hgext/phabricator.py
changeset 42618 c17e6a3e7356
parent 42449 c19d259fd6ad
child 42917 e26c2440a030
--- a/hgext/phabricator.py	Tue Jul 16 18:38:38 2019 +0100
+++ b/hgext/phabricator.py	Tue Jul 16 19:18:16 2019 +0100
@@ -950,7 +950,7 @@
                 meta[b'user'] = b'%s <%s>' % (commit[b'author'],
                                               commit[b'authorEmail'])
             if b'time' in commit:
-                meta[b'date'] = b'%d 0' % commit[b'time']
+                meta[b'date'] = b'%d 0' % int(commit[b'time'])
             if b'branch' in commit:
                 meta[b'branch'] = commit[b'branch']
             node = commit.get(b'commit', commit.get(b'rev'))