Skip to content
Snippets Groups Projects
Commit 799242c6 authored by Bob Lantz's avatar Bob Lantz
Browse files

Fixed undefined variable 'custom' in setup().

parent 8f99421e
No related branches found
No related tags found
No related merge requests found
...@@ -143,7 +143,8 @@ def setup(self): ...@@ -143,7 +143,8 @@ def setup(self):
if self.options.custom: if self.options.custom:
if not os.path.isfile(self.options.custom): if not os.path.isfile(self.options.custom):
raise Exception('could not find custom file: %s' % custom) raise Exception('could not find custom file: %s' %
self.options.custom)
def begin(self): def begin(self):
'''Create and run mininet.''' '''Create and run mininet.'''
......
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