diff options
author | W. Trevor King <wking@drexel.edu> | 2008-11-24 07:09:03 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2008-11-24 07:09:03 -0500 |
commit | 63a7726eba738fe2ed340027039ba655ff91898a (patch) | |
tree | 5fab6648ee4bcbe14c6413f46bfcc683cb9f34f2 /libbe/comment.py | |
parent | d80720fcad22215cdbd1f2b39434945364ba11d5 (diff) | |
download | bugseverywhere-63a7726eba738fe2ed340027039ba655ff91898a.tar.gz |
Added 'allow_no_rcs' flag to RCS file system access methods.
Now mapfile access has fewer special cases, and there is less
redundant rcs.add/update code.
Diffstat (limited to 'libbe/comment.py')
-rw-r--r-- | libbe/comment.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/comment.py b/libbe/comment.py index 9b87f18..710c773 100644 --- a/libbe/comment.py +++ b/libbe/comment.py @@ -181,7 +181,7 @@ class Comment(Tree): return os.path.join(my_dir, name) def load(self): - map = mapfile.map_load(self.get_path("values")) + map = mapfile.map_load(self.rcs, self.get_path("values")) self.time = utility.str_to_time(map["Date"]) self.From = map["From"] self.in_reply_to = map.get("In-reply-to") |