Skip to content

Commit 6e726f2

Browse files
authored
Merge pull request #202 from duosecurity/AaronAtDuo-rework-fstring
Use old style string formatting
2 parents eb25127 + 567d2e4 commit 6e726f2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

duo_client/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ def api_call(
310310
body = ''
311311
params = normalize_params(params)
312312
else:
313-
raise ValueError(f"unsupported sig_version {sig_version}")
313+
raise ValueError('unsupported sig_version {}'.format(sig_version))
314314

315315
if self.sig_timezone == 'UTC':
316316
now = email.utils.formatdate()

0 commit comments

Comments
 (0)