From 45a6fc7881365f998a4e0be4109e386489b96c98 Mon Sep 17 00:00:00 2001 From: Ruben Pollan Date: Fri, 12 Sep 2014 13:15:33 -0500 Subject: Add i686 as arch --- src/launcher.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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] -- cgit v1.2.3