Fix deps, remove pbd

parent c9e971c3
*~
*.swp
from dev import const import const
class Generator: class Generator:
def __init__(self): def __init__(self):
......
...@@ -38,8 +38,6 @@ class MapLineParser: ...@@ -38,8 +38,6 @@ class MapLineParser:
return_code = 1 return_code = 1
options = [option[1:-1] for option in line[2:]] options = [option[1:-1] for option in line[2:]]
print(line[0]) print(line[0])
import pdb
pdb.set_trace()
if line[0].startswith("~"): if line[0].startswith("~"):
line[0] = "~" + prefix + line[0][1:] line[0] = "~" + prefix + line[0][1:]
......
...@@ -4,10 +4,10 @@ import pyinotify ...@@ -4,10 +4,10 @@ import pyinotify
import asyncore import asyncore
import argparse as ap import argparse as ap
from dev import generators import generators
from dev import logger import logger
from dev import parser import parser
from dev import const import const
redirector_watch = None redirector_watch = None
...@@ -122,3 +122,7 @@ def watch(args=None): ...@@ -122,3 +122,7 @@ def watch(args=None):
redirector_watch = RedirectorWatch() redirector_watch = RedirectorWatch()
redirector_watch.watch(args.filename[0]) redirector_watch.watch(args.filename[0])
if __name__ == "__main__":
main()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment