diff options
author | Joshua Harlow <harlowja@gmail.com> | 2016-05-10 15:12:44 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@gmail.com> | 2016-05-10 15:12:44 -0700 |
commit | c5eb65ed705475640fce1025c74a54052c6e9731 (patch) | |
tree | 41127f6cac3d9707f560fcda15bf23518206cdf6 /cloudinit/net/network_state.py | |
parent | 4b0d2430e7674d5abb8fb27ac9ddb129d2bc0715 (diff) | |
download | vyos-cloud-init-c5eb65ed705475640fce1025c74a54052c6e9731.tar.gz vyos-cloud-init-c5eb65ed705475640fce1025c74a54052c6e9731.zip |
Add some basic eni rendering tests
Diffstat (limited to 'cloudinit/net/network_state.py')
-rw-r--r-- | cloudinit/net/network_state.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/net/network_state.py b/cloudinit/net/network_state.py index 2530a601..2feffa71 100644 --- a/cloudinit/net/network_state.py +++ b/cloudinit/net/network_state.py @@ -142,7 +142,7 @@ class NetworkState(object): raise RuntimeError("No handler found for" " command '%s'" % command_type) try: - handler(command) + handler(self, command) except InvalidCommand: if not skip_broken: raise |