Skip to content

Commit

Permalink
Add Python 3 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
cp2004 committed Jun 27, 2020
1 parent 4433338 commit 96fe6fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions octoprint_actiontrigger/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# coding=utf-8
from __future__ import absolute_import
from __future__ import absolute_import, unicode_literals

import flask
import logging
Expand All @@ -18,7 +18,7 @@
##~~ Init Plugin and Metadata

__plugin_name__ = "Action Trigger"

__plugin_pythoncompat__ = ">=2.7,<4"

def __plugin_init__():
global _plugin
Expand Down

0 comments on commit 96fe6fe

Please sign in to comment.