Browse Source

Fix the timezone formatting. Now qgit also displays (parses) it correctly.

Signed-off-by: Simon Hausmann <simon@lst.de>
maint
Simon Hausmann 18 years ago
parent
commit
f291b4e3d4
  1. 5
      contrib/fast-import/git-p4

5
contrib/fast-import/git-p4

@ -922,10 +922,7 @@ class P4Sync(Command): @@ -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")


Loading…
Cancel
Save