We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d610be7 commit fb6f8aeCopy full SHA for fb6f8ae
timeout.py
@@ -28,11 +28,12 @@
28
import subprocess
29
import sys
30
import time
31
-import psutil
32
-libdir = os.path.abspath(os.path.join(os.path.dirname(__file__), 'pylib'))
+srcdir = os.path.abspath(os.path.dirname(__file__))
+libdir = os.path.join(srcdir, 'pylib')
33
sys.path.append(libdir)
34
try:
35
# pylint: disable=wrong-import-position
36
+ import psutil
37
from harisekhon import CLI
38
from harisekhon.utils import plural, prog, qquit
39
except ImportError as _:
@@ -42,7 +43,7 @@
42
43
sys.exit(4)
44
45
__author__ = 'Hari Sekhon'
-__version__ = '0.2'
46
+__version__ = '0.2.1'
47
48
49
# Timeout behaviour itself is handled by my std base class CLI
0 commit comments