]> git.parisson.com Git - deefuzzer.git/commitdiff
fix undefined proc in except
authorGuillaume Pellerin <yomguy@parisson.com>
Wed, 15 Apr 2009 18:00:57 +0000 (18:00 +0000)
committerGuillaume Pellerin <yomguy@parisson.com>
Wed, 15 Apr 2009 18:00:57 +0000 (18:00 +0000)
deefuzz.py

index 8bf15377270af6606e3656b518e80217c9430ab0..ec3c710532277cf40a8c681cf991325299d06344 100755 (executable)
@@ -336,15 +336,12 @@ class Station(Thread):
 
         command = self.command + '"' + media + '"'
 
-        try:
-            proc = subprocess.Popen(command,
+        proc = subprocess.Popen(command,
                     shell = True,
                     bufsize = self.buffer_size,
                     stdin = subprocess.PIPE,
                     stdout = subprocess.PIPE,
                     close_fds = True)
-        except:
-            raise DeeFuzzStreamError('Command failure:', command, proc)
 
         # Core processing
         while True: