Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
0 or 1 not '0' or '1'
  • Loading branch information
dnewman-polar3d authored Jul 4, 2017
1 parent feeb193 commit 453ac23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion octoprint_polarcloud/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ def _hello(self):
'localIP': get_ip(),
'protocol': '2',
'camUrl': camUrl,
'rotateImg': '1' if self._settings.global_get(["webcam", "flipV"]) else '0',
'rotateImg': 1 if self._settings.global_get(["webcam", "flipV"]) else 0,
'printerType': self._printer_type
})
self._challenge = None
Expand Down

0 comments on commit 453ac23

Please sign in to comment.