From ba31b657c49649ee0b00663a32e907bb482270ac Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sun, 6 Dec 2009 17:20:39 -0500 Subject: 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 --- becommands/set.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'becommands/set.py') diff --git a/becommands/set.py b/becommands/set.py index c8c5a2c..4d54a59 100644 --- a/becommands/set.py +++ b/becommands/set.py @@ -32,7 +32,8 @@ def _value_string(bd, setting): val = None return str(val) -def execute(args, manipulate_encodings=True, restrict_file_access=False): +def execute(args, manipulate_encodings=True, restrict_file_access=False, + dir="."): """ >>> import os >>> bd = bugdir.SimpleBugDir() @@ -53,7 +54,8 @@ def execute(args, manipulate_encodings=True, restrict_file_access=False): if len(args) > 2: raise cmdutil.UsageError, "Too many arguments" bd = bugdir.BugDir(from_disk=True, - manipulate_encodings=manipulate_encodings) + manipulate_encodings=manipulate_encodings, + root=dir) if len(args) == 0: keys = bd.settings_properties keys.sort() -- cgit