chiark / gitweb /
new trout from jtn (rising bollards, anyone?)
[irc.git] / acrobat.py
index f500593d12232844321e78a3e49fc474a2242542..7665d5f333b970d1744de07bafb5d41da72ec1a7 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python2
+#!/usr/bin/env python
 #
 # Bot logic:
 # Andrew Walkingshaw <andrew@lexical.org.uk>
@@ -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("=")