Skip to content

Commit 2f2271c

Browse files
committed
Fix for py2
1 parent e35dea3 commit 2f2271c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frameioclient/lib/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def inner(func):
1414
do operations with func
1515
"""
1616
if ENV == 'build':
17-
print(f"API Operation: {kwargs.get('operation')}")
17+
print("API Operation: {}".format(kwargs.get('operation')))
1818

1919
return func
2020

0 commit comments

Comments
 (0)