We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af5e2c1 commit 8481bf2Copy full SHA for 8481bf2
support/win32/wix.py
@@ -299,9 +299,9 @@ def get_bmp(tag, default_bmp):
299
new_bmp = os.path.join(builder.options.appdir,
300
bmp.replace("/", "\\"))
301
if not os.path.exists(new_bmp):
302
- print >>sys.stderr, "Warning: specified %s '%s'" + \
303
- "wasn't found at %s, reverting to default" % \
304
- (tag, bmp, new_bmp)
+ error = "Warning: specified %s '%s'" + \
+ "wasn't found at %s, reverting to default"
+ print >>sys.stderr, error % (tag, bmp, new_bmp)
305
return default_bmp
306
else:
307
return new_bmp
0 commit comments