Skip to content

Commit 7193724

Browse files
authored
Update list-fields.py
always print repr() of s widget's property.
1 parent 436c887 commit 7193724

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

demo/list-fields.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def print_widget(w):
1313
for k in d.keys():
1414
if k.startswith("_"):
1515
continue
16-
print(k, "=", repro(d[k]))
16+
print(k, "=", repr(d[k]))
1717
print("")
1818

1919
doc = fitz.open(sys.argv[1])

0 commit comments

Comments
 (0)