diff --git a/controller/camera_send.py b/controller/camera_send.py index 4afc815..d8734f5 100644 --- a/controller/camera_send.py +++ b/controller/camera_send.py @@ -13,5 +13,5 @@ response = requests.post(config.PICTURE_URL + '/' + controller_id, json={ "picture_base64": picture_base64 }) -puts response -puts picture_base64 is not None +print response +print picture_base64 is not None diff --git a/controller/state/file.py b/controller/state/file.py index 1172205..f635dde 100644 --- a/controller/state/file.py +++ b/controller/state/file.py @@ -9,7 +9,10 @@ class File(object): self.filename = filename def present(self): - os.path.isfile(self.filename) + result = os.path.isfile(self.filename) + print "File %s" % self.filename + print result + result def load(self): if self.filename is None: