Initial Python2 to Python3 Conversion

Initial Python2 to Python3 Conversion using automated 2to3 tool.
This commit is contained in:
Alice Grey 2020-08-29 13:13:27 -05:00
parent 2f3f231cc7
commit d50bca8c9e
3 changed files with 10 additions and 6 deletions

2
.gitignore vendored
View File

@ -7,3 +7,5 @@ dist
*.egg* *.egg*
.DS_Store .DS_Store
*.zip *.zip
*.bak

View File

@ -5,7 +5,7 @@
# #
# This file may be distributed under the terms of the GNU GPLv3 license. # This file may be distributed under the terms of the GNU GPLv3 license.
from __future__ import absolute_import
import datetime import datetime
import logging import logging
import octoprint.plugin import octoprint.plugin
@ -23,7 +23,7 @@ class KlipperPlugin(
octoprint.plugin.AssetPlugin, octoprint.plugin.AssetPlugin,
octoprint.plugin.SimpleApiPlugin, octoprint.plugin.SimpleApiPlugin,
octoprint.plugin.EventHandlerPlugin): octoprint.plugin.EventHandlerPlugin):
_parsing_response = False _parsing_response = False
_message = "" _message = ""
@ -93,7 +93,7 @@ class KlipperPlugin(
self._settings.get(["configuration", "path"]) self._settings.get(["configuration", "path"])
) )
# Check for Unicode config file and convert to String, if so. # Check for Unicode config file and convert to String, if so.
if type(data["config"]) == unicode: if type(data["config"]) == str:
data["config"] = data["config"].encode('utf-8') data["config"] = data["config"].encode('utf-8')
f = open(filepath, "w") f = open(filepath, "w")
@ -339,10 +339,12 @@ class KlipperPlugin(
def logError(self, error): def logError(self, error):
self.sendMessage("log", "error", error) self.sendMessage("log", "error", error)
__plugin_name__ = "OctoKlipper"
__plugin_pythoncompat__ = ">=2.7,<4"
def __plugin_load__(): def __plugin_load__():
global __plugin_implementation__ global __plugin_implementation__
global __plugin_hooks__ global __plugin_hooks__
__plugin_implementation__ = KlipperPlugin() __plugin_implementation__ = KlipperPlugin()
__plugin_hooks__ = { __plugin_hooks__ = {
"octoprint.comm.protocol.gcode.received": __plugin_implementation__.on_parse_gcode, "octoprint.comm.protocol.gcode.received": __plugin_implementation__.on_parse_gcode,

View File

@ -83,7 +83,7 @@ class KlipperLogAnalyzer():
if last_runoff_start: if last_runoff_start:
runoff_samples[last_runoff_start][0] = True runoff_samples[last_runoff_start][0] = True
last_print_stall = print_stall last_print_stall = print_stall
sample_resets = {sampletime: 1 for stall, samples in runoff_samples.values() sample_resets = {sampletime: 1 for stall, samples in list(runoff_samples.values())
for sampletime in samples if not stall} for sampletime in samples if not stall}
return sample_resets return sample_resets
@ -143,7 +143,7 @@ class KlipperLogAnalyzer():
basetime = lasttime = data[0]['#sampletime'] basetime = lasttime = data[0]['#sampletime']
for d in data: for d in data:
st = d['#sampletime'] st = d['#sampletime']
for key, (times, values) in graph_keys.items(): for key, (times, values) in list(graph_keys.items()):
val = d.get(key) val = d.get(key)
if val not in (None, '0', '1'): if val not in (None, '0', '1'):
times.append(st) times.append(st)