~facundo/encuentro/trunk

« back to all changes in this revision

Viewing changes to encuentro/ui/main.py

  • Committer: Facundo Batista
  • Date: 2014-05-02 14:03:39 UTC
  • Revision ID: facundo@taniquetil.com.ar-20140502140339-5yn2ky1h47cnjgn7
Removed mechanize traces from the system.

Show diffs side-by-side

added added

removed removed

Lines of Context:
417
417
                err_type = e.__class__.__name__
418
418
                logger.exception("Custom Encuentro error: %s (%r)",
419
419
                                 e, orig_exc)
420
 
                # check if it's an error from mechanize and continue working if
421
 
                # yes, as it's a normal 500 most of the times; this can not
422
 
                # be easily checked as the exception itself is dynamically
423
 
                # generated by mechanize :/
424
 
                if (orig_exc == 'httperror_seek_wrapper' and
425
 
                        'HTTP Error 500' in msg):
426
 
                    notify(u"Error en la descarga", msg)
427
 
                else:
428
 
                    notify(err_type, msg)
 
420
                notify(err_type, msg)
429
421
                self.episodes_download.end(error=u"Error: " + msg)
430
422
            except Exception, e:
431
423
                logger.exception("Unknown download error: %s (%r)", e, e)