Remove debug print in V2 API

Remove the print statement in v2.py.

Change-Id: Id19d2424f382f0ae797af93c780bd849c67f9c4d
Signed-off-by: Doug Hellmann <doug.hellmann@dreamhost.com>
This commit is contained in:
Doug Hellmann 2012-12-04 15:37:45 -05:00
parent ca1444764f
commit 81f149854f

View File

@ -503,7 +503,6 @@ class SourceController(RestController):
@wsme.pecan.wsexpose(Source)
def get(self):
response = Source(name=self._id, data=self._data)
print 'RETURNING:', response
return response
meters = MetersController()