summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-08-10 19:02:02 -0400
committerChris McDonough <chrism@plope.com>2011-08-10 19:02:02 -0400
commit6f7ecdd034cd6fc726877fc491785aeaa478f1b4 (patch)
tree21633e67c5c2e83a6a3d3890058a836e0e472124
parenta7ec119b16e3a2fdd6bac545377c6a19bb388b75 (diff)
downloadpyramid-6f7ecdd034cd6fc726877fc491785aeaa478f1b4.tar.gz
pyramid-6f7ecdd034cd6fc726877fc491785aeaa478f1b4.tar.bz2
pyramid-6f7ecdd034cd6fc726877fc491785aeaa478f1b4.zip
better message
-rw-r--r--pyramid/tweens.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/tweens.py b/pyramid/tweens.py
index 90ff67267..2b0ce3927 100644
--- a/pyramid/tweens.py
+++ b/pyramid/tweens.py
@@ -54,7 +54,7 @@ class CyclicDependencyError(Exception):
dependent = cycle
dependees = cycles[cycle]
L.append('%r sorts over %r' % (dependent, dependees))
- msg = '; '.join(L)
+ msg = 'Implicit tween ordering cycle:' + '; '.join(L)
return msg
class Tweens(object):