summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--photoblaster/modules/base.py1
-rwxr-xr-xphotoblaster/modules/pbbreaker.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/photoblaster/modules/base.py b/photoblaster/modules/base.py
index 71c1bec..382b96c 100644
--- a/photoblaster/modules/base.py
+++ b/photoblaster/modules/base.py
@@ -92,7 +92,6 @@ class Pb(object):
def create(self):
pass
- #self._cleanup()
def get_output_file(self):
return self._output_file
diff --git a/photoblaster/modules/pbbreaker.py b/photoblaster/modules/pbbreaker.py
index 8ef77a8..bddd07a 100755
--- a/photoblaster/modules/pbbreaker.py
+++ b/photoblaster/modules/pbbreaker.py
@@ -199,8 +199,10 @@ class PbBreaker(Pb):
)
if str(self.params.breaktype) == 'psd':
self.get_output_file().set_filepath(psd_psbfilepath(1), module=self)
+ self._files_created.append(psd_psbfilepath(0))
if str(self.params.breaktype) == 'psb':
self.get_output_file().set_filepath(psd_psbfilepath(0), module=self)
+ self._files_created.append(psd_psbfilepath(1))
if self.params.breakangle:
self._rotate_back()