diff --git a/dropbox.in b/dropbox.in index 9b784a3..130e9d6 100644 --- a/dropbox.in +++ b/dropbox.in @@ -121,11 +121,7 @@ def yes_no_question(question): def plat(): if sys.platform.lower().startswith('linux'): arch = platform.machine() - if (arch[0] == 'i' and - arch[1].isdigit() and - arch[2:4] == '86'): - plat = "x86" - elif arch == 'x86_64': + if arch == 'x86_64': plat = arch else: FatalVisibleError("Platform not supported")