diff --git a/doc/export.rst b/doc/export.rst index 6fe0704..2350fc7 100644 --- a/doc/export.rst +++ b/doc/export.rst @@ -75,7 +75,7 @@ example:: name='honcho-foo', ... entry_points={ - 'honcho_exports': [ + 'honcho_exporters': [ 'honcho_foo.export.foo:FooExport', 'honcho_foo.export.foobar:FooBarExport', ], diff --git a/honcho/command.py b/honcho/command.py index 6850544..ce4ba55 100644 --- a/honcho/command.py +++ b/honcho/command.py @@ -20,7 +20,7 @@ BASENAME = os.path.basename(os.getcwd()) export_choices = dict((_export.name, _export) - for _export in iter_entry_points('honcho_exports')) + for _export in iter_entry_points('honcho_exporters')) try: # Python 3 diff --git a/setup.py b/setup.py index 93a76a9..f50e179 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ 'console_scripts': [ 'honcho=honcho.command:main' ], - 'honcho_exports': [ + 'honcho_exporters': [ 'upstart=honcho.export.upstart:Export', 'supervisord=honcho.export.supervisord:Export', ],