diff options
Diffstat (limited to 'python')
-rw-r--r-- | python/refcat/cli.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/python/refcat/cli.py b/python/refcat/cli.py index ac308b7..2aff453 100644 --- a/python/refcat/cli.py +++ b/python/refcat/cli.py @@ -77,9 +77,9 @@ def files(): for name in names: klass = Register.get_task_cls(name) try: - print("{:30s}{}".format(name, klass().output().path)) + print("{:40s}{}".format(name, klass().output().path)) except AttributeError: - print("{:30s}".format(name)) + print("{:40s}".format(name)) def cat(*args): @@ -138,8 +138,6 @@ def deps(*args): """ if len(args) == 0: raise ValueError("deps failed: task name required") - # task_class = find_task_class(args[0]) - # dump_deps(task_class()) parser = CmdlineParser(sys.argv[2:]) obj = parser.get_task_obj() dump_deps(obj) |