summaryrefslogtreecommitdiff
path: root/contrib/fast-import
diff options
context:
space:
mode:
authorLibravatar Simon Hausmann <hausmann@kde.org>2007-01-31 22:41:08 +0100
committerLibravatar Simon Hausmann <hausmann@kde.org>2007-01-31 22:41:08 +0100
commitf26037dce365b3e525596c6f0236ab203d87a872 (patch)
tree149a2ceb0b8515d9186e3edf55d958fa3907f6ba /contrib/fast-import
parentAvoid calling fstat for every imported file (slow!) and instead read the file... (diff)
downloadtgif-f26037dce365b3e525596c6f0236ab203d87a872.tar.xz
Permit calling p4-fast-export with a depot path that has the typical ... wildcard at the end.
Signed-off-by: Simon Hausmann <hausmann@kde.org>
Diffstat (limited to 'contrib/fast-import')
-rw-r--r--contrib/fast-import/p4-fast-export.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/fast-import/p4-fast-export.py b/contrib/fast-import/p4-fast-export.py
index 133447c4e7..72e01224bf 100644
--- a/contrib/fast-import/p4-fast-export.py
+++ b/contrib/fast-import/p4-fast-export.py
@@ -35,6 +35,9 @@ try:
except ValueError:
changeRange = ""
+if prefix.endswith("..."):
+ prefix = prefix[:-3]
+
if not prefix.endswith("/"):
prefix += "/"