summaryrefslogtreecommitdiff
path: root/run_examples.py
diff options
context:
space:
mode:
authoryo mama <pepper@scannerjammer.com>2015-09-22 23:08:40 -0700
committeryo mama <pepper@scannerjammer.com>2015-09-22 23:08:40 -0700
commit1034f26cacb9e5f9cce732cc9e3c7877c8fa2d38 (patch)
tree5ebe612fe6318315ff5b675e0192a20b32a12deb /run_examples.py
parent301fc6b40e2465e26981e299838c7d58d0bbeb2c (diff)
getting ready for merge
Diffstat (limited to 'run_examples.py')
-rw-r--r--run_examples.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/run_examples.py b/run_examples.py
index ceb9a33..08e45d2 100644
--- a/run_examples.py
+++ b/run_examples.py
@@ -2,9 +2,10 @@ 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_json()
- instance.db_send();
- break
+ if cls == PbBreak:
+ print cls.__name__
+ instance = cls.example_run()
+ instance.file_s3move()
+ print instance.file_json()
+ instance.db_send();
+ break