summaryrefslogtreecommitdiff
path: root/cloudinit
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2015-07-30 22:22:24 -0400
committerScott Moser <smoser@ubuntu.com>2015-07-30 22:22:24 -0400
commit6f174b41496f133af92fb373f3b718eabdebfa05 (patch)
tree80a1a18a5a2a91051e76895d179c552522aee1fc /cloudinit
parent46ad1adef1ac8bc49eaea2b5886bf09dbf9cd001 (diff)
downloadvyos-cloud-init-6f174b41496f133af92fb373f3b718eabdebfa05.tar.gz
vyos-cloud-init-6f174b41496f133af92fb373f3b718eabdebfa05.zip
fix arg ordering
Diffstat (limited to 'cloudinit')
-rw-r--r--cloudinit/stages.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/stages.py b/cloudinit/stages.py
index dbcdbece..2bf7a1c4 100644
--- a/cloudinit/stages.py
+++ b/cloudinit/stages.py
@@ -54,7 +54,7 @@ NULL_DATA_SOURCE = None
class Init(object):
- def __init__(self, reporter=None, ds_deps=None):
+ def __init__(self, ds_deps=None, reporter=None):
if ds_deps is not None:
self.ds_deps = ds_deps
else: