Browse Source

Cleanups, remove unused variable.

Signed-off-by: Simon Hausmann <simon@lst.de>
maint
Simon Hausmann 18 years ago
parent
commit
12d04ca7da
  1. 3
      contrib/fast-import/p4-fast-export.py

3
contrib/fast-import/p4-fast-export.py

@ -50,7 +50,6 @@ revision = "" @@ -50,7 +50,6 @@ revision = ""
users = {}
initialParent = ""
lastChange = ""
lastCommitter = ""
initialTag = ""

if prefix.find("@") != -1:
@ -98,7 +97,6 @@ def commit(details): @@ -98,7 +97,6 @@ def commit(details):
global initialParent
global users
global lastChange
global lastCommitter

epoch = details["time"]
author = details["user"]
@ -153,7 +151,6 @@ def commit(details): @@ -153,7 +151,6 @@ def commit(details):
gitStream.write("\n")

lastChange = details["change"]
lastCommitter = committer

def getUserMap():
users = {}

Loading…
Cancel
Save