diff options
Diffstat (limited to 'run_module_examples.py')
| -rw-r--r-- | run_module_examples.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/run_module_examples.py b/run_module_examples.py index a6af4b5..838934d 100644 --- a/run_module_examples.py +++ b/run_module_examples.py @@ -3,7 +3,8 @@ from photoblaster.modules import Pb 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__ == "PbGradient": + instance = cls.example_run() + instance.file_s3move() + print instance.file_dict() + instance.db_send(); |
