Browse Source

git-p4: Fix indentation from tab to spaces

Signed-off-by: Toby Allsopp <toby.allsopp@navman.co.nz>
maint
Toby Allsopp 17 years ago committed by Junio C Hamano
parent
commit
053d9e432b
  1. 2
      contrib/fast-import/git-p4

2
contrib/fast-import/git-p4

@ -1646,7 +1646,7 @@ class P4Clone(P4Sync): @@ -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]


Loading…
Cancel
Save