Skip to content

Commit f28009a

Browse files
committed
πŸ› Fix a compatibility issue with Python 2
1 parent 08af488 commit f28009a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

β€Žoctoprint_firmware_check/checks/firmware_development.pyβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class MarlinBugfixCheck(Check):
4343
)
4444

4545
def __init__(self):
46-
super().__init__()
46+
Check.__init__(self)
4747
self.placeholders = {
4848
"firmware": "Marlin",
4949
"version": "unknown",
@@ -83,6 +83,6 @@ class MarlinMfsBugfixCheck(MarlinBugfixCheck):
8383
)
8484

8585
def __init__(self):
86-
super().__init__()
86+
MarlinBugfixCheck.__init__(self)
8787
self.placeholders["firmware"] = "Marlin by the Marlin Firmware Service"
8888
self.placeholders["buildtype"] = "nightly"

β€Žsetup.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
plugin_name = "OctoPrint-FirmwareCheck"
1515

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

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

0 commit comments

Comments
Β (0)