From 80ed3c35148702b339ffd77d5a058ea4c693dcef Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Wed, 9 Oct 2019 18:02:49 +0100 Subject: [PATCH] mdwsetup.py: Insert a space before direct-superclass lists. --- mdwsetup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mdwsetup.py b/mdwsetup.py index 385634d..0bce572 100644 --- a/mdwsetup.py +++ b/mdwsetup.py @@ -259,7 +259,7 @@ class distdir (Command): d = me.distribution print('%s-%s' % (d.get_name(), d.get_version())) -class build_gen(Command): +class build_gen (Command): """ Generate files, according to the `genfiles'. @@ -288,7 +288,7 @@ class build (_build, Command): sub_commands = [('build_gen', lambda me: me.distribution.genfiles)] sub_commands += _build.sub_commands -class clean_gen(Command): +class clean_gen (Command): """ Remove the generated files, as listed in `genfiles'. @@ -300,7 +300,7 @@ class clean_gen(Command): d = me.distribution for g in d.genfiles: g.clean(dry_run_p = me.dry_run) -class clean_others(Command): +class clean_others (Command): """ Remove the files listed in the `cleanfiles' argument to `setup'. """ -- 2.11.0