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/bug.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libbe/bug.py') diff --git a/libbe/bug.py b/libbe/bug.py index ef1629c..09a2c1d 100644 --- a/libbe/bug.py +++ b/libbe/bug.py @@ -188,7 +188,7 @@ class Bug(object): return os.path.join(my_dir, name) def load(self, load_comments=False): - map = mapfile.map_load(self.get_path("values")) + map = mapfile.map_load(self.rcs, self.get_path("values")) self.summary = map.get("summary") self.creator = map.get("creator") self.target = map.get("target") -- cgit