diff options
| author | Pepper <pepper@scannerjammer.com> | 2016-03-07 14:48:10 -0500 |
|---|---|---|
| committer | Pepper <pepper@scannerjammer.com> | 2016-03-07 14:48:10 -0500 |
| commit | 42a5e0d75cc69890beb8bb584c2894a5c15b8c0e (patch) | |
| tree | 0f6cb8ca82113de9cb57299f7adba0cf45986547 /run_module_examples.py | |
| parent | 31acf7bbc18454d360f026a2ba117c0e973359cc (diff) | |
ok just need to set maximum and min file sizes
Diffstat (limited to 'run_module_examples.py')
| -rw-r--r-- | run_module_examples.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/run_module_examples.py b/run_module_examples.py index 1aae58c..27fd13c 100644 --- a/run_module_examples.py +++ b/run_module_examples.py @@ -4,11 +4,11 @@ from photoblaster.modules import Modules modules = Modules() for module_name in modules.list_modules(): -# if module_name == "pbconcat": - print "\n\n\n" - print "running example for %s" % module_name - cls = modules.get_module(module_name) - instance = cls.example_run() - instance.get_output_file().s3move() - print instance.get_output_file().as_dict() - instance.db_send() + if module_name == "pbconcat": + print "\n\n\n" + print "running example for %s" % module_name + cls = modules.get_module(module_name) + instance = cls.example_run() + instance.get_output_file().s3move() + print instance.get_output_file().as_dict() + instance.db_send() |
