Fixed --repository option when handling relative path

When specifying relative path to --repository option, 'log' and
'diff' were unable to find the files specified. Here's the fix.
This commit is contained in:
tksoh@users.sf.net 2005-08-17 00:33:53 -08:00
parent 908f12f343
commit 564f653a74

View File

@ -634,7 +634,7 @@ class localrepository:
if not create and not os.path.isdir(self.path):
raise RepoError("repository %s not found" % self.path)
self.root = path
self.root = os.path.abspath(path)
self.ui = ui
if create: