From: Mitchell E Berger Date: Tue, 1 Nov 2011 00:38:37 +0000 (-0400) Subject: Tell users to contact us at our support address, not our automated X-Git-Tag: 0.1.20^0 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/commitdiff_plain/68c13b96a4ad8b33f0bbf607fa0230b88a879e65 Tell users to contact us at our support address, not our automated error mail address, if we run out of IPs. --- diff --git a/code/controls.py b/code/controls.py index d04b2f5..6346002 100644 --- a/code/controls.py +++ b/code/controls.py @@ -116,7 +116,7 @@ def createVm(username, state, owner, contact, name, description, memory, disksiz nic = NIC.query().filter_by(machine_id=None).filter_by(reusable=True).first() if not nic: #No IPs left! raise CodeError("No IP addresses left! " - "Contact %s." % config.web.errormail) + "Contact %s." % config.contact) nic.machine = machine nic.hostname = name session.save_or_update(nic) diff --git a/debian/changelog b/debian/changelog index 91bffee..68fcf66 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +invirt-web (0.1.20) unstable; urgency=low + + * Tell users to contact us at our support address, not our + automated error mail address, if we run out of IPs. + + -- Mitchell Berger Mon, 31 Oct 2011 20:38:00 -0400 + invirt-web (0.1.19) unstable; urgency=low * Fix path to gitweb static content