diff options
author | Simon Hausmann <simon@lst.de> | 2007-02-11 21:35:34 +0100 |
---|---|---|
committer | Simon Hausmann <simon@lst.de> | 2007-02-11 21:35:34 +0100 |
commit | 12d04ca7da3bcfec123fb56d3d143ccda729a7f4 (patch) | |
tree | a872553dbcccd556649803783fae85e2c971b150 | |
parent | Create lightweight git tags (using the "reset" trick) for the incremental imp... (diff) | |
download | tgif-12d04ca7da3bcfec123fb56d3d143ccda729a7f4.tar.xz |
Cleanups, remove unused variable.
Signed-off-by: Simon Hausmann <simon@lst.de>
-rwxr-xr-x | contrib/fast-import/p4-fast-export.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/contrib/fast-import/p4-fast-export.py b/contrib/fast-import/p4-fast-export.py index 989513888a..61b9e67e54 100755 --- a/contrib/fast-import/p4-fast-export.py +++ b/contrib/fast-import/p4-fast-export.py @@ -50,7 +50,6 @@ revision = "" users = {} initialParent = "" lastChange = "" -lastCommitter = "" initialTag = "" if prefix.find("@") != -1: @@ -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): gitStream.write("\n") lastChange = details["change"] - lastCommitter = committer def getUserMap(): users = {} |