Skip to content

Commit b780afb

Browse files
committed
Avoid using fstrings until python35 support is dropped
The PR for that (#722) is yet to have landed
1 parent 6b9a628 commit b780afb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

juju/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2607,7 +2607,7 @@ def _raise_for_status(entities, status):
26072607

26082608
if wait_for_exact_units is not None:
26092609
assert type(wait_for_exact_units) == int and wait_for_exact_units >= 0, \
2610-
f'Invalid value for wait_for_exact_units {wait_for_exact_units}'
2610+
'Invalid value for wait_for_exact_units : %s' % wait_for_exact_units
26112611

26122612
while True:
26132613
busy = []

0 commit comments

Comments
 (0)