summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xfirstaidkit6
-rw-r--r--plugins/dep1.py4
-rw-r--r--plugins/dep2.py4
-rw-r--r--plugins/dep3.py4
-rw-r--r--plugins/sample1Plugin.py4
-rw-r--r--plugins/sample2Plugin.py4
-rw-r--r--plugins/sample3Plugin/sample3Plugin.py6
7 files changed, 16 insertions, 16 deletions
diff --git a/firstaidkit b/firstaidkit
index 15c7f10..e917c45 100755
--- a/firstaidkit
+++ b/firstaidkit
@@ -19,9 +19,9 @@
import sys
import getopt
from threading import Thread
-from tasker import Tasker
-from tasker import Config
-from tasker import reporting
+from pyfirstaidkit import Tasker
+from pyfirstaidkit import Config
+from pyfirstaidkit import reporting
class Flags:
print_config = False
diff --git a/plugins/dep1.py b/plugins/dep1.py
index 5196208..bfbe1d4 100644
--- a/plugins/dep1.py
+++ b/plugins/dep1.py
@@ -15,8 +15,8 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-from tasker.plugins import Plugin,Flow
-from tasker.returns import *
+from pyfirstaidkit.plugins import Plugin,Flow
+from pyfirstaidkit.returns import *
class Sample1Plugin(Plugin):
"""This plugin uses the predefined flow in the Plugin abstract class."""
diff --git a/plugins/dep2.py b/plugins/dep2.py
index cbd93a0..ab60364 100644
--- a/plugins/dep2.py
+++ b/plugins/dep2.py
@@ -15,8 +15,8 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-from tasker.plugins import Plugin,Flow
-from tasker.returns import *
+from pyfirstaidkit.plugins import Plugin,Flow
+from pyfirstaidkit.returns import *
class Sample1Plugin(Plugin):
"""This plugin uses the predefined flow in the Plugin abstract class."""
diff --git a/plugins/dep3.py b/plugins/dep3.py
index 768cf3a..1bee803 100644
--- a/plugins/dep3.py
+++ b/plugins/dep3.py
@@ -15,8 +15,8 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-from tasker.plugins import Plugin,Flow
-from tasker.returns import *
+from pyfirstaidkit.plugins import Plugin,Flow
+from pyfirstaidkit.returns import *
class Sample1Plugin(Plugin):
"""This plugin uses the predefined flow in the Plugin abstract class."""
diff --git a/plugins/sample1Plugin.py b/plugins/sample1Plugin.py
index 643a41e..e71e4e5 100644
--- a/plugins/sample1Plugin.py
+++ b/plugins/sample1Plugin.py
@@ -15,8 +15,8 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-from tasker.plugins import Plugin,Flow
-from tasker.returns import *
+from pyfirstaidkit.plugins import Plugin,Flow
+from pyfirstaidkit.returns import *
class Sample1Plugin(Plugin):
"""This plugin uses the predefined flow in the Plugin abstract class."""
diff --git a/plugins/sample2Plugin.py b/plugins/sample2Plugin.py
index 2e56c59..98baa56 100644
--- a/plugins/sample2Plugin.py
+++ b/plugins/sample2Plugin.py
@@ -15,8 +15,8 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-from tasker.plugins import Plugin,Flow
-from tasker.returns import *
+from pyfirstaidkit.plugins import Plugin,Flow
+from pyfirstaidkit.returns import *
class Sample2Plugin(Plugin):
"""This plugin will defin one more function and use it in a newly defined flow."""
diff --git a/plugins/sample3Plugin/sample3Plugin.py b/plugins/sample3Plugin/sample3Plugin.py
index 5168e3f..8186b7c 100644
--- a/plugins/sample3Plugin/sample3Plugin.py
+++ b/plugins/sample3Plugin/sample3Plugin.py
@@ -15,9 +15,9 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-from tasker.returns import *
-from tasker.plugins import Plugin,Flow
-from tasker import Config
+from pyfirstaidkit.returns import *
+from pyfirstaidkit.plugins import Plugin,Flow
+from pyfirstaidkit import Config
import subprocess
class Sample3Plugin(Plugin):