Skip to content

Commit

Permalink
pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
hyades committed Jul 25, 2013
1 parent c3b7395 commit deea826
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Empty file added python-api/gstswitch/Makefile
Empty file.
4 changes: 2 additions & 2 deletions python-api/gstswitch/server.py
Expand Up @@ -183,8 +183,8 @@ def _start_process(self, cmd):
shell=False)
print cmd
return process
except OSError as e:
if e.errno == ENOENT:
except OSError as error:
if error.errno == ENOENT:
raise PathError("Cannot find gst-switch-srv at path:"
" '{0}'".format(self.path))
else:
Expand Down

0 comments on commit deea826

Please sign in to comment.