summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomás Touceda <chiiph@leap.se>2014-09-12 15:25:55 -0300
committerTomás Touceda <chiiph@leap.se>2014-09-12 15:25:55 -0300
commitf3602cd5a58511a48ce572868d1369f2fb94e1ff (patch)
treeb89411d1e03de489f82106df539586f01cfdde18
parenta244174d377f5b9ebe889078f51511f45f47fe54 (diff)
parent45a6fc7881365f998a4e0be4109e386489b96c98 (diff)
Merge remote-tracking branch 'refs/remotes/meskio/bug/add_i686' into develop
-rw-r--r--src/launcher.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/launcher.py b/src/launcher.py
index fbd0368..5560fe3 100644
--- a/src/launcher.py
+++ b/src/launcher.py
@@ -13,6 +13,7 @@ import tuf.client.updater
bundles_per_platform = {
"Linux-i386": "linux-i368",
+ "Linux-i686": "linux-i368",
"Linux-x86_64": "linux-x86_64",
}
@@ -107,7 +108,7 @@ class TUF(threading.Thread):
def _repo_path(self):
system = platform.system() + "-" + platform.machine()
if system not in bundles_per_platform:
- raise NotImplemented("Platform %s not supported" % (system,))
+ raise NotImplementedError("Platform %s not supported" % (system,))
return bundles_per_platform[system]