From 41220cc9bba7b8d914ba6aebaa7fc72bcfcedec1 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 26 Jun 2020 21:49:47 -0700 Subject: [PATCH] Don't use an f-string, in order to not break Py2.7 (yet) --- etg/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etg/app.py b/etg/app.py index bee9a137..77d5c6e2 100644 --- a/etg/app.py +++ b/etg/app.py @@ -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) """),