From: Toby Allsopp Date: Mon, 4 Feb 2008 20:41:43 +0000 (+1300) Subject: git-p4: Fix indentation from tab to spaces X-Git-Tag: v1.5.5-rc0~246 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=053d9e432be246a389fb8adaa0c88e7c791f8b21;p=git.git git-p4: Fix indentation from tab to spaces Signed-off-by: Toby Allsopp --- diff --git a/contrib/fast-import/git-p4 b/contrib/fast-import/git-p4 index c17afae94..781a0cbbb 100755 --- a/contrib/fast-import/git-p4 +++ b/contrib/fast-import/git-p4 @@ -1646,7 +1646,7 @@ class P4Clone(P4Sync): depotPath = args[0] depotDir = re.sub("(@[^@]*)$", "", depotPath) depotDir = re.sub("(#[^#]*)$", "", depotDir) - depotDir = re.sub(r"\.\.\.$", "", depotDir) + depotDir = re.sub(r"\.\.\.$", "", depotDir) depotDir = re.sub(r"/$", "", depotDir) return os.path.split(depotDir)[1]