Skip to content

Commit

Permalink
Pass code check.
Browse files Browse the repository at this point in the history
  • Loading branch information
lantz committed May 11, 2012
1 parent 0d94548 commit e8d60e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mininet/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def errRun( *cmd, **kwargs ):
errDone = False
while not outDone or not errDone:
readable = poller.poll()
for fd, event in readable:
for fd, _event in readable:
f = fdtofile[ fd ]
data = f.read( 1024 )
if echo:
Expand Down Expand Up @@ -116,7 +116,7 @@ def quietRun( cmd, **kwargs ):
return errRun( cmd, stderr=STDOUT, **kwargs )[ 0 ]

# pylint: enable-msg=E1103
# pylint: disable-msg=E1101,W0612
# pylint: disable-msg=E1101

def isShellBuiltin( cmd ):
"Return True if cmd is a bash builtin."
Expand All @@ -129,7 +129,7 @@ def isShellBuiltin( cmd ):

isShellBuiltin.builtIns = None

# pylint: enable-msg=E1101,W0612
# pylint: enable-msg=E1101

# Interface management
#
Expand Down

0 comments on commit e8d60e0

Please sign in to comment.