diff options
author | Scott Moser <smoser@ubuntu.com> | 2015-08-04 21:57:57 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2015-08-04 21:57:57 -0500 |
commit | 328cc7fbaf4d60b51193fb8c14e52d8c6f3273f2 (patch) | |
tree | ebfa101aecd8fe426004751e8d13576e2629bb4d /cloudinit/config/cc_rh_subscription.py | |
parent | 0d85766423073c7af17750e9faaafdd33c63ae08 (diff) | |
download | vyos-cloud-init-328cc7fbaf4d60b51193fb8c14e52d8c6f3273f2.tar.gz vyos-cloud-init-328cc7fbaf4d60b51193fb8c14e52d8c6f3273f2.zip |
pep8 fixes
Diffstat (limited to 'cloudinit/config/cc_rh_subscription.py')
-rw-r--r-- | cloudinit/config/cc_rh_subscription.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cloudinit/config/cc_rh_subscription.py b/cloudinit/config/cc_rh_subscription.py index 6da26d25..3b30c47e 100644 --- a/cloudinit/config/cc_rh_subscription.py +++ b/cloudinit/config/cc_rh_subscription.py @@ -130,9 +130,9 @@ class SubscriptionManager(object): ((not self.auto_attach) or (util.is_false(str(self.auto_attach)))): - no_auto = "The service-level key must be used in conjunction with "\ - "the auto-attach key. Please re-run with auto-attach: "\ - "True" + no_auto = ("The service-level key must be used in conjunction " + "with the auto-attach key. Please re-run with " + "auto-attach: True") return False, no_auto return True, None |