diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2014-12-02 17:00:28 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2014-12-18 18:23:53 +0100 |
commit | 2d397c4d73763af847dc91cebd643e14f4502e14 (patch) | |
tree | 520931845760edeb9293b1c2a6f01bd1216c8389 | |
parent | 209df673ae89949d731e0c5691036df03cb20657 (diff) |
utils: Debian jessie identifies itself as 8.0 now
-rw-r--r-- | cerbero/utils/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cerbero/utils/__init__.py b/cerbero/utils/__init__.py index 3be85f49..977e3bdd 100644 --- a/cerbero/utils/__init__.py +++ b/cerbero/utils/__init__.py @@ -152,7 +152,7 @@ def system_info(): distro_version = DistroVersion.DEBIAN_SQUEEZE elif d[1].startswith('7.') or d[1].startswith('wheezy'): distro_version = DistroVersion.DEBIAN_WHEEZY - elif d[1].startswith('jessie'): + elif d[1].startswith('8.') or d[1].startswith('jessie'): distro_version = DistroVersion.DEBIAN_JESSIE else: raise FatalError("Distribution '%s' not supported" % str(d)) |