summaryrefslogtreecommitdiff
path: root/run_module_examples.py
diff options
context:
space:
mode:
authorPepper <pepper@scannerjammer.com>2015-09-27 00:03:42 -0400
committerPepper <pepper@scannerjammer.com>2015-09-27 00:03:42 -0400
commit30126dfc2877a82b8af02d68ca3b155068d551dd (patch)
treea706d699cd1e1f50c2007e69d6ca9ba96819eaed /run_module_examples.py
parentff31f2c4cf1792df351359f1749f63b3d0cce23b (diff)
done linting...just need to wrap up and publish
Diffstat (limited to 'run_module_examples.py')
-rw-r--r--run_module_examples.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/run_module_examples.py b/run_module_examples.py
index 32a920f..7803fc0 100644
--- a/run_module_examples.py
+++ b/run_module_examples.py
@@ -1,9 +1,10 @@
+#!/usr/bin/python2.7
+"""calls the example_run method on all modules"""
import sys
sys.path.append('./lib')
from pb import *
for cls in Pb.__subclasses__():
- print cls.__name__
- if cls.__name__ == 'PbGenerate':
+ print cls.__name__
instance = cls.example_run()
instance.file_s3move()
print instance.file_dict()