mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-04 15:38:43 +00:00
Simplify some code on create_plugin.py
.
This commit is contained in:
parent
1c2eb0c737
commit
e43146a4ac
1 changed files with 4 additions and 4 deletions
|
@ -196,12 +196,12 @@ setup(
|
||||||
|
|
||||||
entry_points=\"\"\"
|
entry_points=\"\"\"
|
||||||
[deluge.plugin.core]
|
[deluge.plugin.core]
|
||||||
%%s = deluge.plugins.%%s:CorePlugin
|
%%(plugin_name)s = deluge.plugins.%%(plugin_module)s:CorePlugin
|
||||||
[deluge.plugin.gtkui]
|
[deluge.plugin.gtkui]
|
||||||
%%s = deluge.plugins.%%s:GtkUIPlugin
|
%%(plugin_name)s = deluge.plugins.%%(plugin_module)s:GtkUIPlugin
|
||||||
[deluge.plugin.web]
|
[deluge.plugin.web]
|
||||||
%%s = deluge.plugins.%%s:WebUIPlugin
|
%%(plugin_name)s = deluge.plugins.%%(plugin_module)s:WebUIPlugin
|
||||||
\"\"\" %% ((__plugin_name__, __plugin_name__.lower())*3)
|
\"\"\" %% dict(plugin_name=__plugin_name__, plugin_module=__plugin_name__.lower())
|
||||||
)
|
)
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue