From ffcbaf366ea7ee09ac19709e0168985424ad4b55 Mon Sep 17 00:00:00 2001 From: Andres Riancho Date: Fri, 27 Dec 2013 18:07:43 -0300 Subject: [PATCH] Remove debug print --- moto/server.py | 1 - 1 file changed, 1 deletion(-) diff --git a/moto/server.py b/moto/server.py index d35cbae98..6209d12c3 100644 --- a/moto/server.py +++ b/moto/server.py @@ -29,7 +29,6 @@ class DomainDispatcherApplication(object): for backend in BACKENDS.itervalues(): for url_base in backend.url_bases: if re.match(url_base, 'http://%s' % host): - print url_base, 'http://%s' % host return backend raise RuntimeError('Invalid host: "%s"' % host)