diff options
author | W. Trevor King <wking@drexel.edu> | 2009-12-07 07:18:48 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-12-07 07:18:48 -0500 |
commit | fdf9925ffaada614544d1b2d3ccecb42f1549acb (patch) | |
tree | 4050e78947cd847d17e2de399da7a1d4d794820c /becommands/target.py | |
parent | fc131e3acbf657f42959910c4f4483a09c871016 (diff) | |
download | bugseverywhere-fdf9925ffaada614544d1b2d3ccecb42f1549acb.tar.gz |
be --dir DIR COMMAND now roots the bugdir in DIR without changing directories.
Previously, for the directory structure
A
|-- X
`-- Y
You could do something like
A$ be --dir X diff --dir ../Y
Now it's
A$ be --dir X diff --dir Y
The --root option to `be init` has been removed as redundant. Replace
calls like
be init --root DIR
with
be --dir DIR init
Diffstat (limited to 'becommands/target.py')
-rw-r--r-- | becommands/target.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/becommands/target.py b/becommands/target.py index 9ccbacc..5dd5d38 100644 --- a/becommands/target.py +++ b/becommands/target.py @@ -23,7 +23,8 @@ from libbe import cmdutil, bugdir from becommands import depend __desc__ = __doc__ -def execute(args, manipulate_encodings=True, restrict_file_access=False): +def execute(args, manipulate_encodings=True, restrict_file_access=False, + dir="."): """ >>> import os, StringIO, sys >>> bd = bugdir.SimpleBugDir() @@ -60,7 +61,8 @@ def execute(args, manipulate_encodings=True, restrict_file_access=False): or (options.resolve == True and len(args) not in (0, 1)): raise cmdutil.UsageError('Incorrect number of arguments.') bd = bugdir.BugDir(from_disk=True, - manipulate_encodings=manipulate_encodings) + manipulate_encodings=manipulate_encodings, + root=dir) if options.resolve == True: if len(args) == 0: summary = None |