Skip to content

Commit 4f7a411

Browse files
committed
*Actually* fixing _meta access test for python3
1 parent 2659d14 commit 4f7a411

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/input/func_noerror_proteted_meta_access.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ def do_a_thing(self):
2020
if __name__ == '__main__':
2121
MODEL = ModelWhichLikesMeta()
2222
MODEL.save()
23-
print MODEL._meta.get_field('ursuary')
24-
print MODEL.do_a_thing()
23+
print(MODEL._meta.get_field('ursuary'))
24+
print(MODEL.do_a_thing())

0 commit comments

Comments
 (0)