From 8d2196e3e9510c85967f2d9871b03c7f1a5a9ab0 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Sun, 18 Feb 2007 01:18:22 +1000 Subject: [PATCH] hotfix for branchless imports --- p4-fast-export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p4-fast-export.py b/p4-fast-export.py index 76c4b9d..f37fdcf 100755 --- a/p4-fast-export.py +++ b/p4-fast-export.py @@ -210,7 +210,7 @@ def commit(details, files, branch, branchPrefix): merges = Set() for file in files: - if lastChange == 0: + if lastChange == 0 or not detectBranches: continue path = file["path"] if not path.startswith(branchPrefix): -- 2.11.0