Skip to content

Commit

Permalink
docs: python 3 print
Browse files Browse the repository at this point in the history
  • Loading branch information
Swamii committed Sep 15, 2018
1 parent 9562d4c commit 6bb75f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ These transitions state that a PersonStatus can only go to DEAD from ALIVE and t
person.status = PersonStatus.REANIMATED
person.save()
except InvalidStatusOperationError:
print "Person status can not go from ALIVE to REANIMATED"
print("Person status can not go from ALIVE to REANIMATED")
The Enum-class can also be used without the EnumField. This is very useful in Django form ChoiceFields.

Expand Down

0 comments on commit 6bb75f1

Please sign in to comment.