summaryrefslogtreecommitdiff
path: root/run_module_examples.py
diff options
context:
space:
mode:
authorPepper <pepper@scannerjammer.com>2015-11-26 16:26:53 -0500
committerPepper <pepper@scannerjammer.com>2015-11-26 16:26:53 -0500
commit9f6503ebcb20ac2621cd5b0defbb4a20716faf18 (patch)
treee7b1aa36dd8e52ae37964740a7c27e4f30a9beff /run_module_examples.py
parent4bdd7d6891e84289502a8f619e338a3672707ea0 (diff)
rewrote db methods to MVC style
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();