diff options
author | W. Trevor King <wking@drexel.edu> | 2008-11-15 18:35:41 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2008-11-15 18:35:41 -0500 |
commit | 03011f286420d8e091052019ee41eba021041e61 (patch) | |
tree | fcf389e28c1142d61015bf37134925d4b209ba25 /libbe/bugdir.py | |
parent | 137f084f2931a0e2e1fa3076beadac17b88ef6b6 (diff) | |
download | bugseverywhere-03011f286420d8e091052019ee41eba021041e61.tar.gz |
Moved libbe.cmdutil.bug_summary() to libbe.bug.Bug.string().
This seems like a natual place for a function that only operates on Bugs.
Diffstat (limited to 'libbe/bugdir.py')
-rw-r--r-- | libbe/bugdir.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbe/bugdir.py b/libbe/bugdir.py index 7570bb3..f8f45b8 100644 --- a/libbe/bugdir.py +++ b/libbe/bugdir.py @@ -174,7 +174,7 @@ class BugDir: return bugs def get_bug(self, uuid): - return Bug(self.bugs_path, uuid, self.rcs_name) + return Bug(self.bugs_path, uuid, self.rcs_name, self) def list_uuids(self): for uuid in os.listdir(self.bugs_path): @@ -187,7 +187,7 @@ class BugDir: uuid = names.uuid() path = os.path.join(self.bugs_path, uuid) self.rcs.mkdir(path) - bug = Bug(self.bugs_path, None, self.rcs_name) + bug = Bug(self.bugs_path, None, self.rcs_name, self) bug.uuid = uuid return bug |