summaryrefslogtreecommitdiff
path: root/run_module_examples.py
diff options
context:
space:
mode:
authorPepper <pepper@scannerjammer.com>2015-09-26 04:14:44 -0400
committerPepper <pepper@scannerjammer.com>2015-09-26 04:14:44 -0400
commit4ebeb643da6419835e9ac3adb731e38a8ec9c7b4 (patch)
tree4876b43410d67b62a238102ee98bf78f248fee78 /run_module_examples.py
parentcc7fcec7ea718777f41154a107bdf8c709ed968a (diff)
reworked some more
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 9a6ab10..050288a 100644
--- a/run_module_examples.py
+++ b/run_module_examples.py
@@ -3,7 +3,8 @@ sys.path.append('./lib')
from pb import *
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__ == 'PbPattern':
+ instance = cls.example_run()
+ instance.file_s3move()
+ print instance.file_dict()
+ instance.db_send();