summaryrefslogtreecommitdiff
path: root/run_module_examples.py
diff options
context:
space:
mode:
authorpepperpepperpepper <pepper@scannerjammer.com>2016-03-02 18:20:24 -0800
committerpepperpepperpepper <pepper@scannerjammer.com>2016-03-02 18:20:24 -0800
commite17f45d9ab2ca15bda473d8510d3f78d8c2323ef (patch)
tree669466db021e192a35a331a98a01f3bfe8273027 /run_module_examples.py
parent1159eacbc62c2ab7c566be078c43c08bdfda8778 (diff)
ok now we are talking...got plugins to work
Diffstat (limited to 'run_module_examples.py')
-rw-r--r--run_module_examples.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/run_module_examples.py b/run_module_examples.py
index c6559c8..342892b 100644
--- a/run_module_examples.py
+++ b/run_module_examples.py
@@ -1,12 +1,12 @@
#!/usr/bin/python2.7
"""calls the example_run method on all modules"""
-import pluginbase
from photoblaster.modules import Modules
-
modules = Modules()
for module_name in modules.list_modules():
- if module_name == 'pbgradient':
+ if module_name == "pblandscape":
+ print "\n\n\n"
+ print "running example for %s" % module_name
cls = modules.get_module(module_name)
instance = cls.example_run()
instance.get_output_file().s3move()