summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraham Dumpleton <Graham.Dumpleton@gmail.com>2019-12-20 14:45:43 +1100
committerGraham Dumpleton <Graham.Dumpleton@gmail.com>2019-12-20 14:45:43 +1100
commita78b4e2ee35a404c06d4bdbed95e3ffa5ad2d061 (patch)
treef5fb725e626215ab50f28326dd0a45f119daff6c
parent2705a29c4ffb6d05c2c187831266b43780d6489b (diff)
downloadmod_wsgi-a78b4e2ee35a404c06d4bdbed95e3ffa5ad2d061.tar.gz
Use Python 3 style print.
-rw-r--r--tests/access.wsgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/access.wsgi b/tests/access.wsgi
index a0ebfc3..7395e99 100644
--- a/tests/access.wsgi
+++ b/tests/access.wsgi
@@ -1,3 +1,3 @@
def allow_access(environ, host):
- print environ, host
+ print(environ, host)
return True