xcatch: Fix stupid errors in file-watching.
authorMark Wooding <mdw@distorted.org.uk>
Wed, 17 Dec 2008 12:50:29 +0000 (12:50 +0000)
committerMark Wooding <mdw@distorted.org.uk>
Wed, 17 Dec 2008 12:50:29 +0000 (12:50 +0000)
xcatch.in

index 5c940f1..d6e51d1 100644 (file)
--- a/xcatch.in
+++ b/xcatch.in
@@ -404,8 +404,8 @@ def main():
       name = '<stdin>'
       catcher.watch_file(stdin)
     else:
-      name = file
-      catcher.watch(open(opts.file, 'r'))
+      name = opts.file
+      catcher.watch_file(open(opts.file, 'r'))
   elif len(args) == 0:
     name = '<stdin>'
     catcher.watch_file(stdin)