chiark / gitweb /
main: Drop daft try/expect
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Thu, 25 Oct 2018 16:04:44 +0000 (17:04 +0100)
committerMatthew Vernon <matthewv@chiark.greenend.org.uk>
Wed, 7 Nov 2018 19:12:31 +0000 (19:12 +0000)
This serves only to obfuscate.  The result is that, for example, if
you don't have the twitter module, you get this error message:
  acrobat: configuration module Servus-chiark.py not found
which is a lie.

Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
acrobat.py

index 0d9202ea8f46b430cc2de8cfb0199b55ec58e4fd..7665d5f333b970d1744de07bafb5d41da72ec1a7 100755 (executable)
@@ -81,11 +81,7 @@ def main():
     if len(sys.argv) < 2:
        print "acrobat: provide configuration module name on command line"
        sys.exit(1)
-    try:
-       c=__import__(sys.argv[1])
-    except ImportError:
-       print "acrobat: configuration module "+sys.argv[1]+".py not found"
-       sys.exit(1)
+    c=__import__(sys.argv[1])
     # Override configuration items from the rest of the command line
     for opt in sys.argv[2:]:
         (key,value)=opt.split("=")