Browse Source

Do not catch generic exception (catch it above)

Alois Mahdal 11 years ago
parent
commit
7e5274a3dc
1 changed files with 0 additions and 3 deletions
  1. 0
    3
      lib/htlogr.py

+ 0
- 3
lib/htlogr.py View File

66
         except httplib.BadStatusLine as e:
66
         except httplib.BadStatusLine as e:
67
             return_msg = ("httplib does not like this line:\n\n    %s"
67
             return_msg = ("httplib does not like this line:\n\n    %s"
68
                           % e.line)
68
                           % e.line)
69
-        except:
70
-            return_msg = ("something bad happened. We don't know what"
71
-                          " but we know it's bad")
72
         return return_msg
69
         return return_msg
73
 
70
 
74
     def data(self, data, tag=None, i=None):
71
     def data(self, data, tag=None, i=None):