1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-04 03:06:13 +02:00

Fix project name guessing

Signed-off-by: Simon Hausmann <simon@lst.de>
This commit is contained in:
Simon Hausmann 2007-06-11 08:50:57 +02:00
parent cae7b732d8
commit 6e5295c4d3

View File

@ -909,7 +909,12 @@ class P4Sync(Command):
def guessProjectName(self):
for p in self.depotPaths:
return p [p.strip().rfind("/") + 1:]
if p.endswith("/"):
p = p[:-1]
p = p[p.strip().rfind("/") + 1:]
if not p.endswith("/"):
p += "/"
return p
def getBranchMapping(self):
for info in p4CmdList("branches"):