Re: [PATCH] git-p4: Fix indentation from tab to spaces
From: Tommy Thorn <hidden>
Date: 2016-06-15 22:44:10
Toby Allsopp wrote:
quoted hunk ↗ jump to hunk
Signed-off-by: Toby Allsopp <redacted> --- 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 c17afae..781a0cb 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]
Acked-by: Tommy Thorn <redacted> I'm not sure that happend, but I did have some issues sending the patch that should be fixed now. Nobody commented on the most important one - the fix for git-p4 memory appetite. Tommy