Skip to content

Commit 60f1c33

Browse files
committed
Lint.
1 parent e7ae300 commit 60f1c33

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

contrib/adapters/advanced_authoring_format.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def _transcribe_property(prop):
9696
# result[child.name] = _transcribe(child)
9797
else:
9898
if debug:
99-
print "???", child
99+
print("??? {}".format(child))
100100
return result
101101

102102
else:
@@ -106,7 +106,7 @@ def _transcribe_property(prop):
106106
def _add_child(parent, child, source):
107107
if child is None:
108108
if debug:
109-
print "MISSING CHILD?", source
109+
print("MISSING CHILD? {}".format(source))
110110
elif isinstance(child, otio.schema.Marker):
111111
parent.markers.append(child)
112112
else:

0 commit comments

Comments
 (0)