diff options
author | Toby Allsopp <Toby.Allsopp@navman.co.nz> | 2008-02-05 09:41:43 +1300 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-02-07 00:39:08 -0800 |
commit | 053d9e432be246a389fb8adaa0c88e7c791f8b21 (patch) | |
tree | ab21088db9b03e081a66728a5ea9f60e5f1d04f8 | |
parent | a4cfcb023d09b839670d3e9bf93d28ee5e906582 (diff) | |
download | git-053d9e432be246a389fb8adaa0c88e7c791f8b21.tar.gz git-053d9e432be246a389fb8adaa0c88e7c791f8b21.tar.xz |
git-p4: Fix indentation from tab to spaces
Signed-off-by: Toby Allsopp <toby.allsopp@navman.co.nz>
-rwxr-xr-x | contrib/fast-import/git-p4 | 2 |
1 files changed, 1 insertions, 1 deletions
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] |