Skip to content

Commit df58592

Browse files
committed
Quick fix for OctoPrint
1 parent 2186b5a commit df58592

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

octoeverywhere/notificationshandler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from .printinfo import PrintInfoManager, PrintInfo
1717
from .snapshotresizeparams import SnapshotResizeParams
1818
from .debugprofiler import DebugProfiler, DebugProfilerFeatures
19-
from .notifications.bedcooldownwatcher import BedCooldownWatcher
19+
from .Notifications.bedcooldownwatcher import BedCooldownWatcher
2020

2121
try:
2222
# On some systems this package will install but the import will fail due to a missing system .so.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
3232
# Note that this single version string is used by all of the plugins in OctoEverywhere!
33-
plugin_version = "3.5.4"
33+
plugin_version = "3.5.6"
3434

3535
# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
3636
# module
@@ -103,7 +103,7 @@
103103

104104
# Any additional python packages you need to install with your plugin that are not contained in <plugin_package>.*
105105
# For OctoEverywhere, we need to include or common packages shared between hosts, so OctoPrint copies them into the package folder as well.
106-
plugin_additional_packages = [ "octoeverywhere", "octoeverywhere.Proto", "octoeverywhere.WebStream", "octoeverywhere.Webcam" ]
106+
plugin_additional_packages = [ "octoeverywhere", "octoeverywhere.Proto", "octoeverywhere.WebStream", "octoeverywhere.Webcam", "octoeverywhere.Notifications" ]
107107

108108
# Any python packages within <plugin_package>.* you do NOT want to install with your plugin
109109
plugin_ignored_packages = []

0 commit comments

Comments
 (0)