[z3-checkins] r41926 - z3/deliverance/DeliveranceVHoster/trunk/docs

ianb at codespeak.net ianb at codespeak.net
Fri Apr 6 00:37:53 CEST 2007


Author: ianb
Date: Fri Apr  6 00:37:53 2007
New Revision: 41926

Modified:
   z3/deliverance/DeliveranceVHoster/trunk/docs/openplans_hooks.py
Log:
Print out warning/error if domain_regex doesn't match

Modified: z3/deliverance/DeliveranceVHoster/trunk/docs/openplans_hooks.py
==============================================================================
--- z3/deliverance/DeliveranceVHoster/trunk/docs/openplans_hooks.py	(original)
+++ z3/deliverance/DeliveranceVHoster/trunk/docs/openplans_hooks.py	Fri Apr  6 00:37:53 2007
@@ -30,6 +30,7 @@
     match = re.search(domain_regex, domain, re.I)
     if not match:
         # Don't try to set up domains we don't recognize
+        print 'The domain %r cannot be recognized by the domain_regex %r' % (domain, domain_regex)
         return
     project = match.group(1)
     remote_uris = [


More information about the z3-checkins mailing list