We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 184920d commit e530acbCopy full SHA for e530acb
1 file changed
bugsnag/legacy.py
@@ -49,7 +49,7 @@ def configure(**options):
49
)
50
except Exception:
51
warnings.warn(
52
- f"legacy configuration sync failed: {exc}", stacklevel=2
+ "legacy configuration sync failed: {}".format(exc), stacklevel=2
53
54
55
logger = configuration.logger
@@ -68,7 +68,7 @@ def configure(**options):
68
69
70
71
- f"legacy package attr sync failed: {exc}", stacklevel=2
+ "legacy package attr sync failed: {}".format(exc), stacklevel=2
72
73
74
return result
0 commit comments