summaryrefslogtreecommitdiffstats
path: root/hacking/build_library
diff options
context:
space:
mode:
authorToshio Kuratomi <a.badger@gmail.com>2019-07-02 21:18:40 +0200
committerToshio Kuratomi <a.badger@gmail.com>2019-07-11 07:17:35 +0200
commit33d2728879f8655337bc2157b723f1efa3a1920a (patch)
tree5979971d5050bb06883336f38f1b61c63f3155af /hacking/build_library
parentSplit the metaclass == type and from future boilerplate code. (diff)
downloadansible-33d2728879f8655337bc2157b723f1efa3a1920a.tar.xz
ansible-33d2728879f8655337bc2157b723f1efa3a1920a.zip
Rename python files in hacking/ directory to have .py suffix
ansible-test only passes files which have the .py suffix for sanity tests on python files. This change will allow sanity tests to run on the Python files in hacking/ * Rename test-module to test-module.py * Symlink test-module for backwards compat since end users may be using test-module * Fix test-module sanity errors that are now triggered * Rename ansible_profile to ansible-profile.py * Rename build-ansible
Diffstat (limited to 'hacking/build_library')
-rw-r--r--hacking/build_library/build_ansible/commands.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/hacking/build_library/build_ansible/commands.py b/hacking/build_library/build_ansible/commands.py
index 363e8056fc..e689e25a37 100644
--- a/hacking/build_library/build_ansible/commands.py
+++ b/hacking/build_library/build_ansible/commands.py
@@ -12,9 +12,9 @@ from abc import ABCMeta, abstractmethod, abstractproperty
class Command:
"""
- Subcommands of :program:`build-ansible`.
+ Subcommands of :program:`build-ansible.py`.
- This defines an interface that all subcommands must conform to. :program:`build-ansible` will
+ This defines an interface that all subcommands must conform to. :program:`build-ansible.py` will
require that these things are present in order to proceed.
"""
@staticmethod