Skip to content

Commit

Permalink
🐛 Fix a compatibility issue with Python 2
Browse files Browse the repository at this point in the history
  • Loading branch information
foosel committed Oct 11, 2021
1 parent 08af488 commit f28009a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions octoprint_firmware_check/checks/firmware_development.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class MarlinBugfixCheck(Check):
)

def __init__(self):
super().__init__()
Check.__init__(self)
self.placeholders = {
"firmware": "Marlin",
"version": "unknown",
Expand Down Expand Up @@ -83,6 +83,6 @@ class MarlinMfsBugfixCheck(MarlinBugfixCheck):
)

def __init__(self):
super().__init__()
MarlinBugfixCheck.__init__(self)
self.placeholders["firmware"] = "Marlin by the Marlin Firmware Service"
self.placeholders["buildtype"] = "nightly"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
plugin_name = "OctoPrint-FirmwareCheck"

# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
plugin_version = "2021.8.11"
plugin_version = "2021.10.11"

# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
# module
Expand Down

0 comments on commit f28009a

Please sign in to comment.