caxap / rest_condition

Complex permissions flow for django-rest-framework (http://django-rest-framework.org).
MIT License
280 stars 29 forks source link

Add brackets around print() for python 3 compatibility #3

Closed skade closed 9 years ago

skade commented 9 years ago

The package doesn't install on python 3.4 because setup.py prints using

print "foo"

python3 removed the print statement and requires

print("foo")

All tests pass otherwise.