~ubuntu-branches/ubuntu/saucy/cloud-init/saucy

« back to all changes in this revision

Viewing changes to cloudinit/handlers/boot_hook.py

  • Committer: Scott Moser
  • Date: 2013-03-07 22:26:14 UTC
  • mto: (1.3.1) (245.2.5 raring)
  • mto: This revision was merged to the branch mainline in revision 246.
  • Revision ID: smoser@ubuntu.com-20130307222614-uol8g3za9u8q4958
Tags: upstream-0.7.2~bzr795
ImportĀ upstreamĀ versionĀ 0.7.2~bzr795

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
        util.write_file(filepath, contents, 0700)
57
57
        return filepath
58
58
 
59
 
    def _handle_part(self, _data, ctype, filename, payload, _frequency):
 
59
    def handle_part(self, _data, ctype, filename,  # pylint: disable=W0221
 
60
                    payload, frequency):  # pylint: disable=W0613
60
61
        if ctype in handlers.CONTENT_SIGNALS:
61
62
            return
62
63