summaryrefslogtreecommitdiff
path: root/run_module_examples.py
diff options
context:
space:
mode:
authorPepper <pepper@scannerjammer.com>2015-09-27 03:02:22 -0400
committerPepper <pepper@scannerjammer.com>2015-09-27 03:02:22 -0400
commit480896bd416d0dfef7716508c6a10144d0fa068e (patch)
tree2a2297334e990e94f241a7882c5a61cf0f25a702 /run_module_examples.py
parent30126dfc2877a82b8af02d68ca3b155068d551dd (diff)
ready for merge and ready for publish
Diffstat (limited to 'run_module_examples.py')
-rw-r--r--run_module_examples.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/run_module_examples.py b/run_module_examples.py
index 7803fc0..637fd81 100644
--- a/run_module_examples.py
+++ b/run_module_examples.py
@@ -4,8 +4,9 @@ import sys
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__ == "PbGenerate":
+ print cls.__name__
+ instance = cls.example_run()
+ instance.file_s3move()
+ print instance.file_dict()
+ instance.db_send();