##// END OF EJS Templates
localrepo: local() returns self...
Matt Mackall -
r14603:68a43fdd default
parent child Browse files
Show More
@@ -563,7 +563,7 class localrepository(repo.repository):
563 return [(n in nm) for n in nodes]
563 return [(n in nm) for n in nodes]
564
564
565 def local(self):
565 def local(self):
566 return True
566 return self
567
567
568 def join(self, f):
568 def join(self, f):
569 return os.path.join(self.path, f)
569 return os.path.join(self.path, f)
General Comments 0
You need to be logged in to leave comments. Login now