Skip to content
Snippets Groups Projects
Commit dc5839ae authored by Pierre Lalet's avatar Pierre Lalet Committed by GitHub
Browse files

Merge pull request #774 from irl/master

Fixes inconsistent use of tabs/spaces
parents b36da963 46804da3
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ class Route:
rtlst = []
for net,msk,gw,iface,addr in self.routes:
rtlst.append((ltoa(net),
rtlst.append((ltoa(net),
ltoa(msk),
gw,
(iface.name if not isinstance(iface, six.string_types) else iface),
......
......@@ -420,7 +420,7 @@ class ContextManagerSubprocess(object):
self.name = name
def __enter__(self):
pass
pass
def __exit__(self, exc_type, exc_value, traceback):
if exc_type == OSError:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment