Removing print statements
Change-Id: I7daac859eed01c85d340be3ad1192aecdc86b361
diff --git a/xos/models.py b/xos/models.py
index aa3d9b6..2e85e90 100644
--- a/xos/models.py
+++ b/xos/models.py
@@ -108,9 +108,7 @@
"""
We need to get an ip from addresspool when we create this model
"""
- print self.name, self.id, self.public_ip
if not self.id and not self.public_ip:
self.public_ip = self.address_pool.get_address()
self.public_mac = ip_to_mac(self.public_ip)
- print self.name, self.id, self.public_ip
super(AddressManagerServiceInstance, self).save(*args, **kwds)
\ No newline at end of file