diff -r dea107dce0c4 -r 750eeb7230a1 docutil/dochtml.py --- a/docutil/dochtml.py Mon Aug 14 21:31:01 2017 +0300 +++ b/docutil/dochtml.py Mon Aug 14 22:23:17 2017 +0300 @@ -94,7 +94,7 @@ if wx.Platform == '__WXMSW__': import webbrowser webbrowser.open(url) - elif subprocess.call("firefox %s"%url, shell=True) != 0: + elif subprocess.call("firefox %s" % url, shell=True) != 0: wx.MessageBox("""Firefox browser not found.\nPlease point your browser at :\n%s""" % url) except ImportError: wx.MessageBox('Please point your browser at: %s' % url)