From: Simon Hausmann Date: Wed, 31 Jan 2007 21:41:08 +0000 (+0100) Subject: Permit calling p4-fast-export with a depot path that has the typical ... wildcard... X-Git-Tag: v1.5.3-rc0~65^2^2~232 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f26037dce365b3e525596c6f0236ab203d87a872;p=git.git Permit calling p4-fast-export with a depot path that has the typical ... wildcard at the end. Signed-off-by: Simon Hausmann --- diff --git a/contrib/fast-import/p4-fast-export.py b/contrib/fast-import/p4-fast-export.py index 133447c4e..72e01224b 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 += "/"