From 63a7726eba738fe2ed340027039ba655ff91898a Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Mon, 24 Nov 2008 07:09:03 -0500 Subject: 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. --- libbe/comment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libbe/comment.py') 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") -- cgit