diff --git a/data/buildcache.py b/data/buildcache.py index d34b69b7..ec728e6f 100644 --- a/data/buildcache.py +++ b/data/buildcache.py @@ -148,7 +148,7 @@ def buildCache(dbPath, sqlPath, pricesPath, debug=0): tempDB = sqlite3.connect(':memory:') # Read the SQL script so we are ready to populate structure, etc. - if debug: print("* Executing SQL Script '%s'" % sqlPath) + if debug: print("* Executing SQL Script '{}' from '{}'".format(sqlPath, os.getcwd())) with sqlPath.open() as sqlFile: sqlScript = sqlFile.read() tempDB.executescript(sqlScript)