mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-06 20:10:08 +01:00
Don't use an f-string, in order to not break Py2.7 (yet)
This commit is contained in:
@@ -522,7 +522,7 @@ def run():
|
||||
except ValueError as ex:
|
||||
target = wx.LogStderr()
|
||||
orig = wx.Log.SetActiveTarget(target)
|
||||
wx.LogError(f"Unable to set default locale: '{ex}'")
|
||||
wx.LogError("Unable to set default locale: '{}'".format(ex))
|
||||
wx.Log.SetActiveTarget(orig)
|
||||
"""),
|
||||
|
||||
|
||||
Reference in New Issue
Block a user