Fix Extractor and Example plugin not starting
This commit is contained in:
parent
b86ba13376
commit
d3e8afdda1
|
@ -59,10 +59,10 @@ setup(
|
||||||
|
|
||||||
entry_points="""
|
entry_points="""
|
||||||
[deluge.plugin.core]
|
[deluge.plugin.core]
|
||||||
%s = %s:deluge.plugins.CorePlugin
|
%s = deluge.plugins.%s:CorePlugin
|
||||||
[deluge.plugin.gtkui]
|
[deluge.plugin.gtkui]
|
||||||
%s = %s:deluge.plugins.GtkUIPlugin
|
%s = deluge.plugins.%s:GtkUIPlugin
|
||||||
[deluge.plugin.webui]
|
[deluge.plugin.web]
|
||||||
%s = %s:deluge.plugins.WebUIPlugin
|
%s = deluge.plugins.%s:WebUIPlugin
|
||||||
""" % ((__plugin_name__, __plugin_name__.lower())*3)
|
""" % ((__plugin_name__, __plugin_name__.lower())*3)
|
||||||
)
|
)
|
||||||
|
|
|
@ -65,10 +65,10 @@ setup(
|
||||||
|
|
||||||
entry_points="""
|
entry_points="""
|
||||||
[deluge.plugin.core]
|
[deluge.plugin.core]
|
||||||
%s = %s:deluge.plugins.CorePlugin
|
%s = deluge.plugins.%s:CorePlugin
|
||||||
[deluge.plugin.gtkui]
|
[deluge.plugin.gtkui]
|
||||||
%s = %s:deluge.plugins.GtkUIPlugin
|
%s = deluge.plugins.%s:GtkUIPlugin
|
||||||
[deluge.plugin.webui]
|
[deluge.plugin.web]
|
||||||
%s = %s:deluge.plugins.WebUIPlugin
|
%s = deluge.plugins.%s:WebUIPlugin
|
||||||
""" % ((__plugin_name__, __plugin_name__.lower())*3)
|
""" % ((__plugin_name__, __plugin_name__.lower())*3)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue