summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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):