~zyga/snapcraft/plainbox-provider

« back to all changes in this revision

Viewing changes to snapcraft/plugin.py

  • Committer: Michael Terry
  • Date: 2015-07-02 13:28:47 UTC
  • Revision ID: michael.terry@canonical.com-20150702132847-ui2x2h0533rtaww9
Rename Handler to Plugin

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
 
65
65
            for propName in dir(module):
66
66
                prop = getattr(module, propName)
67
 
                if issubclass(prop, snapcraft.BaseHandler):
 
67
                if issubclass(prop, snapcraft.BasePlugin):
68
68
                    self.code = prop(partName, options)
69
69
                    break
70
70