Commit 0ccf3adc authored by Denis Bilenko's avatar Denis Bilenko

testrunner.py: better error message

parent 7f18f7da
......@@ -370,7 +370,7 @@ def main():
options.db = 'testresults.sqlite3'
print 'Storing the results in %s' % options.db
elif options.db and not sqlite3:
sys.exit('Cannot access the database: no sqlite3 module found.')
sys.exit('Cannot access the database %r: no sqlite3 module found.' % (options.db, ))
if options.db:
db = sqlite3.connect(options.db)
......
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