From dba2db98226669fbb218face5fbbeb20987975e9 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Wed, 31 Jan 2007 22:41:08 +0100 Subject: [PATCH] be a bit more permissive on the accepted depot paths --- p4-fast-export.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/p4-fast-export.py b/p4-fast-export.py index 133447c..72e0122 100644 --- a/p4-fast-export.py +++ b/p4-fast-export.py @@ -35,6 +35,9 @@ try: except ValueError: changeRange = "" +if prefix.endswith("..."): + prefix = prefix[:-3] + if not prefix.endswith("/"): prefix += "/" -- 2.11.4.GIT