Remove debug print

This commit is contained in:
Andres Riancho 2013-12-27 18:07:43 -03:00 committed by Steve Pulec
parent c6515af8bf
commit ffcbaf366e

View File

@ -29,7 +29,6 @@ class DomainDispatcherApplication(object):
for backend in BACKENDS.itervalues(): for backend in BACKENDS.itervalues():
for url_base in backend.url_bases: for url_base in backend.url_bases:
if re.match(url_base, 'http://%s' % host): if re.match(url_base, 'http://%s' % host):
print url_base, 'http://%s' % host
return backend return backend
raise RuntimeError('Invalid host: "%s"' % host) raise RuntimeError('Invalid host: "%s"' % host)