summaryrefslogtreecommitdiff
path: root/run_module_examples.py
diff options
context:
space:
mode:
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()