mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 03:24:54 +00:00
More fixes for previously overzealous changes to setup.py
This commit is contained in:
parent
f2d81ff542
commit
b19845bf93
1 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
@ -188,7 +188,7 @@ class BuildDocs(BuildDoc):
|
|||
|
||||
|
||||
class Build(_build):
|
||||
sub_commands = [('BuildTranslations', None), ('BuildPlugins', None)] + _build.sub_commands
|
||||
sub_commands = [('build_trans', None), ('build_plugins', None)] + _build.sub_commands
|
||||
|
||||
def run(self):
|
||||
# Run all sub-commands (at least those that need to be run)
|
||||
|
@ -250,7 +250,7 @@ class CleanPlugins(cmd.Command):
|
|||
|
||||
|
||||
class Clean(_clean):
|
||||
sub_commands = _clean.sub_commands + [('CleanPlugins', None)]
|
||||
sub_commands = _clean.sub_commands + [('clean_plugins', None)]
|
||||
|
||||
def run(self):
|
||||
# Run all sub-commands (at least those that need to be run)
|
||||
|
|
Loading…
Add table
Reference in a new issue