summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrey Lebedev <andrey@lebedev.lt>2013-02-20 10:27:53 +0200
committerAndrey Lebedev <andrey@lebedev.lt>2013-02-20 10:27:53 +0200
commite70fa6c80ae43a43faaf5e9244ab29fb6246c0c4 (patch)
tree9251e685015f056a4a987028c48364857862db7e /src
parent13b9d48c619e18b0c791b39edcbcf30989dd05b9 (diff)
downloadzope-security-e70fa6c80ae43a43faaf5e9244ab29fb6246c0c4.tar.gz
Python-3.3 compatibility for examples
Diffstat (limited to 'src')
-rw-r--r--src/zope/security/examples/sandbox.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zope/security/examples/sandbox.py b/src/zope/security/examples/sandbox.py
index cb2455c..8a17984 100644
--- a/src/zope/security/examples/sandbox.py
+++ b/src/zope/security/examples/sandbox.py
@@ -253,7 +253,7 @@ class TimeGenerator(object):
home.transportAgent(a, new_home)
except Exception as e:
print('-- Exception --')
- print('moving "%s" from "%s" to "%s"' %(a, h,` new_home`))
+ print('moving "%s" from "%s" to "%s"' %(a, h, repr(new_home)))
print(e)
print()
self.teardownAgent(a)