Commit 035f66e2 authored by Jack Jansen's avatar Jack Jansen

The import of the scanner can also fail, cater for that.

parent 509c3ee2
......@@ -6,7 +6,10 @@ import string
def bgenone(dirname, shortname):
os.chdir(dirname)
try:
m = __import__(shortname+'scan')
except:
return 0
try:
m.main()
except:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment