diff options
author | Aaron Bentley <abentley@panoramicfeedback.com> | 2005-05-19 16:40:33 +0000 |
---|---|---|
committer | Aaron Bentley <abentley@panoramicfeedback.com> | 2005-05-19 16:40:33 +0000 |
commit | a2c9b6f19c4e8669fa328757211b68fcd0243cf7 (patch) | |
tree | ae2344c3ff6675d91f36e7c8ff56a6fe7e425641 /libbe/bugdir.py | |
parent | 8a9a710c4044f3f27ca8d7f05482155a4bf254c3 (diff) | |
download | bugseverywhere-a2c9b6f19c4e8669fa328757211b68fcd0243cf7.tar.gz |
Distinguished between 'paranoid' and non-paranoid add-id
The paranoid adds are only used for the .be root. Paranoia is a big time-suck
on Arch trees, because they require a full inventory.
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 c6a9b5b..20b6d9b 100644 --- a/libbe/bugdir.py +++ b/libbe/bugdir.py @@ -86,7 +86,7 @@ def create_bug_dir(path, rcs): """ root = os.path.join(path, ".be") try: - rcs.mkdir(root) + rcs.mkdir(root, paranoid=True) except OSError, e: if e.errno == errno.ENOENT: raise NoRootEntry(path) |