summaryrefslogtreecommitdiff
path: root/qface/watch.py
diff options
context:
space:
mode:
Diffstat (limited to 'qface/watch.py')
-rw-r--r--qface/watch.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/qface/watch.py b/qface/watch.py
index 18fe5f9..4a8512f 100644
--- a/qface/watch.py
+++ b/qface/watch.py
@@ -5,6 +5,9 @@ from path import Path
import time
from .shell import sh
+"""
+Provides an API to monitor the file system
+"""
class RunScriptChangeHandler(FileSystemEventHandler):
def __init__(self, argv):
@@ -26,7 +29,7 @@ class RunScriptChangeHandler(FileSystemEventHandler):
def monitor(src, argv):
"""
- reloads the script when src files changes
+ reloads the script given by argv when src files changes
"""
script = Path(argv[0]).expand().abspath()
src = src if isinstance(src, (list, tuple)) else [src]