Cross Forests
/
projects
/
python
/
fast-export.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
837ec75
)
Fix the timezone formatting. Now qgit also displays (parses) it correctly.
author
Simon Hausmann
<simon@luria.(none)>
Sat, 14 Apr 2007 09:21:50 +0000
(11:21 +0200)
committer
Simon Hausmann
<simon@luria.(none)>
Sat, 14 Apr 2007 09:21:50 +0000
(11:21 +0200)
git-p4
patch
|
blob
|
history
diff --git
a/git-p4
b/git-p4
index
6db757a
..
44a07c2
100755
(executable)
--- a/
git-p4
+++ b/
git-p4
@@
-922,10
+922,7
@@
class P4Sync(Command):
except:
pass
- self.tz = - time.timezone / 36
- tzsign = ("%s" % self.tz)[0]
- if tzsign != '+' and tzsign != '-':
- self.tz = "+" + ("%s" % self.tz)
+ self.tz = "%+03d%02d" % (- time.timezone / 3600, ((- time.timezone % 3600) / 60))
self.gitOutput, self.gitStream, self.gitError = popen2.popen3("git fast-import")