summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbottle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bottle.py b/bottle.py
index 7f163aa..45ebd61 100755
--- a/bottle.py
+++ b/bottle.py
@@ -610,7 +610,7 @@ class Route(object):
def __repr__(self):
cb = self.get_undecorated_callback()
- return '<%s:%s %s %s>' % (cb.__module__, cb.__name__, self.method, self.rule)
+ return '<%s %s -> %s:%s>' % (self.method, self.rule, cb.__module__, cb.__name__)
###############################################################################
# Application Object ###########################################################