From b19845bf93e1c1abbdf488ba1dc9479c7325898b Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Tue, 23 Sep 2014 09:09:49 +0100 Subject: [PATCH] More fixes for previously overzealous changes to setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 1c5f5cda8..e0e1d53a5 100755 --- a/setup.py +++ b/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)