X-Git-Url: https://git.distorted.org.uk/~mdw/runlisp/blobdiff_plain/4e2368592f2b964ccd971ebf73c7b4268df5d666..80ed3c35148702b339ffd77d5a058ea4c693dcef:/mdwsetup.py 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'. """