Fix typo in listExistingP4Branches that broke sync.
Signed-off-by: Simon Hausmann <simon@lst.de>
This commit is contained in:
parent
9226c03c32
commit
cfeb59be25
@ -846,8 +846,8 @@ class P4Sync(Command):
|
|||||||
cmdline += " --branches"
|
cmdline += " --branches"
|
||||||
|
|
||||||
for line in read_pipe_lines(cmdline):
|
for line in read_pipe_lines(cmdline):
|
||||||
lie = line.strip()
|
line = line.strip()
|
||||||
if self.importIntoRemotes and ((not line.startswith("p4/")) or line == "p4/HEAD\n"):
|
if self.importIntoRemotes and ((not line.startswith("p4/")) or line == "p4/HEAD"):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if self.importIntoRemotes:
|
if self.importIntoRemotes:
|
||||||
|
Loading…
Reference in New Issue
Block a user