~cloud-init-dev/cloud-init/trunk

« back to all changes in this revision

Viewing changes to cloudinit/config/cc_rh_subscription.py

  • Committer: Scott Moser
  • Date: 2015-08-05 02:57:57 UTC
  • Revision ID: smoser@ubuntu.com-20150805025757-b3nbr91k8ef7r00z
pep8 fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
130
130
                ((not self.auto_attach)
131
131
                 or (util.is_false(str(self.auto_attach)))):
132
132
 
133
 
            no_auto = "The service-level key must be used in conjunction with "\
134
 
                      "the auto-attach key.  Please re-run with auto-attach: "\
135
 
                      "True"
 
133
            no_auto = ("The service-level key must be used in conjunction "
 
134
                       "with the auto-attach key.  Please re-run with "
 
135
                       "auto-attach: True")
136
136
            return False, no_auto
137
137
        return True, None
138
138