diff options
author | 2014-07-10 10:29:12 -0400 | |
---|---|---|
committer | 2014-07-10 10:29:12 -0400 | |
commit | 2a2a50221559d81958ae309d193ab0e18602d268 (patch) | |
tree | ff63c5536ae18eb1755ddbb66f1285a1efb4040a | |
parent | 5cc5621d84f001df8d413736d9905634cd8de75a (diff) |
Uncomment the provider.apply call
This fixes issues where running os-net-config did nothing.
-rw-r--r-- | os_net_config/cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os_net_config/cli.py b/os_net_config/cli.py index 6ba4ebd..2ebe8f3 100644 --- a/os_net_config/cli.py +++ b/os_net_config/cli.py @@ -115,7 +115,7 @@ def main(argv=sys.argv): for iface_json in iface_array: obj = objects.object_from_json(iface_json) provider.addObject(obj) - #provider.apply() + provider.apply() return 0 |