summaryrefslogtreecommitdiff
path: root/run_module_examples.py
diff options
context:
space:
mode:
authorPepper <pepper@scannerjammer.com>2015-11-26 16:27:51 -0500
committerPepper <pepper@scannerjammer.com>2015-11-26 16:27:51 -0500
commit450461aeefb8ef5ffd0d197a8e65cfc48e8ef92a (patch)
tree6c96e2d5df15de0aedb02e4bbc226c84c8ea7e0e /run_module_examples.py
parented27db2dd92f3e8d9527ec7d100c1c23cfd7976e (diff)
parent9f6503ebcb20ac2621cd5b0defbb4a20716faf18 (diff)
rewrote to MVC
Merge branch 'dblogic'
Diffstat (limited to 'run_module_examples.py')
-rw-r--r--run_module_examples.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/run_module_examples.py b/run_module_examples.py
index a6af4b5..838934d 100644
--- a/run_module_examples.py
+++ b/run_module_examples.py
@@ -3,7 +3,8 @@
from photoblaster.modules import Pb
for cls in Pb.__subclasses__():
print cls.__name__
- instance = cls.example_run()
- instance.file_s3move()
- print instance.file_dict()
- instance.db_send();
+ if cls.__name__ == "PbGradient":
+ instance = cls.example_run()
+ instance.file_s3move()
+ print instance.file_dict()
+ instance.db_send();