Skip to content

Commit

Permalink
git-p4: Fix indentation from tab to spaces
Browse files Browse the repository at this point in the history
Signed-off-by: Toby Allsopp <toby.allsopp@navman.co.nz>
  • Loading branch information
Toby Allsopp authored and Junio C Hamano committed Feb 7, 2008
1 parent a4cfcb0 commit 053d9e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/fast-import/git-p4
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down

0 comments on commit 053d9e4

Please sign in to comment.