aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libbe/rcs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/rcs.py b/libbe/rcs.py
index fd87f42..1024249 100644
--- a/libbe/rcs.py
+++ b/libbe/rcs.py
@@ -186,7 +186,7 @@ class RCS(object):
if binary == False:
f = codecs.open(os.path.join(self.rootdir, path), "r", self.encoding)
else:
- f = open(path, "rb")
+ f = open(os.path.join(self.rootdir, path), "rb")
contents = f.read()
f.close()
return contents