Skip to content

Commit 4a6f7ac

Browse files
plotskimueslo
authored andcommitted
Don't catch TrackerException in BBSubmission.submit()
1 parent 610a86e commit 4a6f7ac

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

pythonbits/bb.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,7 @@ def subcategorise(self):
7979
@staticmethod
8080
def submit(payload):
8181
t = Tracker()
82-
try:
83-
return t.upload(**payload)
84-
except TrackerException as e:
85-
log.error('Upload failed: %s' % (e,))
82+
return t.upload(**payload)
8683

8784
@form_field('scene', 'checkbox')
8885
def _render_scene(self):

0 commit comments

Comments
 (0)