diff options
author | Aaron Bentley <aaron.bentley@utoronto.ca> | 2005-03-24 12:54:18 +0000 |
---|---|---|
committer | Aaron Bentley <aaron.bentley@utoronto.ca> | 2005-03-24 12:54:18 +0000 |
commit | 7bbb8105c144eaca2299bd22b4063af6b54ef1a3 (patch) | |
tree | 9305f3b2b7a597b9a9d12b5a34f28fe53118249e /libbe/bugdir.py | |
parent | 6decc39bc7314cf0596ea682bf17677b68888a5a (diff) | |
download | bugseverywhere-7bbb8105c144eaca2299bd22b4063af6b54ef1a3.tar.gz |
Fixed the bug dir path in BugDirs produced by create_bug_dir
Diffstat (limited to 'libbe/bugdir.py')
-rw-r--r-- | libbe/bugdir.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/bugdir.py b/libbe/bugdir.py index e47c109..d81c616 100644 --- a/libbe/bugdir.py +++ b/libbe/bugdir.py @@ -50,7 +50,7 @@ def create_bug_dir(path, rcs): rcs.mkdir(os.path.join(root, "bugs")) set_version(root, rcs) map_save(rcs, os.path.join(root, "settings"), {"rcs_name": rcs.name}) - return BugDir(path) + return BugDir(os.path.join(path, ".be")) def setting_property(name, valid=None): |