Skip to content

Commit 6843033

Browse files
committed
JSObserver: Add missing string formatting param
1 parent 0ba0c60 commit 6843033

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

overviewer_core/observer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ def __init__(self, outputdir, minrefresh=5, messages=False):
234234
else:
235235
raise Exception("JSObserver: messages parameter must be a dictionary with three entries: totalTiles, renderCompleted and renderProgress")
236236
if not os.path.exists(outputdir):
237-
raise Exception("JSObserver: Output directory specified (%s) doesn't appear to exist. This should be the same as the Overviewer output directory")
237+
raise Exception("JSObserver: Output directory specified (%s) doesn't appear to exist. This should be the same as the Overviewer output directory" % outputdir)
238238

239239
self.logfile = open(os.path.join(outputdir, "progress.json"), "w+", 0)
240240
self.json["message"]="Render starting..."

0 commit comments

Comments
 (0)