From 948d80e7be0b5e30d79cd6edaeffda1a5802bbea Mon Sep 17 00:00:00 2001 From: Baris Metin Date: Tue, 23 Aug 2011 14:52:44 -0400 Subject: [PATCH 1/1] fix pathname for svn modules --- module-tools.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/module-tools.py b/module-tools.py index 5bbf74b3..8c19d8dd 100755 --- a/module-tools.py +++ b/module-tools.py @@ -163,6 +163,11 @@ class SvnRepository: def name(self): return os.path.basename(self.path) + def pathname(self): + # for svn modules pathname is just the name of the module as + # all modules are at the root + return self.name() + def url(self): out = Command("svn info %s" % self.path, self.options).output_of() for line in out.split('\n'): -- 2.43.0