diff options
author | Scott Moser <smoser@ubuntu.com> | 2015-03-10 16:18:20 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2015-03-10 16:18:20 -0400 |
commit | ec23db8b0450c8f76305295bea5ec3178dd5f176 (patch) | |
tree | b217a106ba0713185177525412971c23ab3f8ee0 | |
parent | c3f5fb9cd04681428dcc64aa8fc55b2d9cb86a52 (diff) | |
download | vyos-cloud-init-ec23db8b0450c8f76305295bea5ec3178dd5f176.tar.gz vyos-cloud-init-ec23db8b0450c8f76305295bea5ec3178dd5f176.zip |
DataSourceMAAS: remove debug statement
-rw-r--r-- | cloudinit/sources/DataSourceMAAS.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cloudinit/sources/DataSourceMAAS.py b/cloudinit/sources/DataSourceMAAS.py index 9f9cf3ab..53f097e6 100644 --- a/cloudinit/sources/DataSourceMAAS.py +++ b/cloudinit/sources/DataSourceMAAS.py @@ -187,7 +187,6 @@ def read_maas_seed_dir(seed_d): md = {} for fname in files: try: - print("fname: %s / %s" % (fname, fname not in BINARY_FIELDS)) md[fname] = util.load_file(os.path.join(seed_d, fname), decode=fname not in BINARY_FIELDS) except IOError as e: |