Commit 775b0988 authored by Weblate's avatar Weblate

Merge remote-tracking branch 'origin/master'

parents 4ef784d3 2402e369
...@@ -2109,12 +2109,16 @@ def get_versions(): ...@@ -2109,12 +2109,16 @@ def get_versions():
name = 'Git' name = 'Git'
url = 'http://git-scm.com/' url = 'http://git-scm.com/'
mod = get_version_module('git', name, url) mod = get_version_module('git', name, url)
try:
result.append(( result.append((
name, name,
url, url,
mod.Git().version().replace('git version ', ''), mod.Git().version().replace('git version ', ''),
'1.0', '1.0',
)) ))
except TypeError:
# Happens with too old GitPython
pass
name = 'PyCairo' name = 'PyCairo'
url = 'http://cairographics.org/pycairo/' url = 'http://cairographics.org/pycairo/'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment