diff options
Diffstat (limited to 'run_module_examples.py')
| -rw-r--r-- | run_module_examples.py | 11 |
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(); |
