Hello,

I have noticed this error when installing this package.

Attached is a trivial patch that fixes this bug

Sent upstream: https://github.com/miracle2k/django-assets/pull/47

-- 
Jason Pleau
Description: python3 compat for pytest_plugin.py
 Trivial change to make the print statement compatible with python3 in the
 django_assets/pytest_plugin.py
 .
 Closes #767826
Author: Jason Pleau <ja...@jpleau.ca>
Forwarded: https://github.com/miracle2k/django-assets/pull/47
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/django_assets/pytest_plugin.py
+++ b/django_assets/pytest_plugin.py
@@ -3,5 +3,5 @@
 
 @pytest.fixture(autouse=True)
 def set_django_assets_env():
-    print "Set django assets environment"
+    print("Set django assets environment")
     django_assets.env.get_env() # initialise django-assets settings
_______________________________________________
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

Reply via email to