Misc: Adapt GitHub's version format to the new one (introduced in 0fb2ee1bf7).

This commit is contained in:
Valentin Lorentz 2013-09-11 17:17:32 +00:00
parent 0fb2ee1bf7
commit dfafee3ff2

View File

@ -310,7 +310,7 @@ class Misc(callbacks.Plugin):
.decode('utf8'))
version = data['commit']['committer']['date']
# Strip the last 'Z':
version = ''.join(version.rsplit('Z', 1))
version = ''.join(version.rsplit('Z', 1)).replace(':', '-')
versions[branch] = version
newest = _('The newest versions available online are %s.') % \
', '.join([_('%s (in %s)') % (y,x)