diff options
author | Matt Clay <mclay@redhat.com> | 2020-06-23 04:05:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-23 04:05:30 +0200 |
commit | 4816bb4f43ee22f20fa7d75a79db659cc1cdeaf3 (patch) | |
tree | 4cf981e84fd5cb86174f8067d7178d731dece1c9 /test/integration/targets/service | |
parent | Fix boilerplate in setup.py and lib/ansible/ dir. (diff) | |
download | ansible-4816bb4f43ee22f20fa7d75a79db659cc1cdeaf3.tar.xz ansible-4816bb4f43ee22f20fa7d75a79db659cc1cdeaf3.zip |
More boilerplate fixes. (#70224)
* Fix boilerplate in hacking dir.
* Fix boilerplate in docs dir.
* Fix boilerplate in integration tests.
* Fix boilerplate in examples.
Diffstat (limited to 'test/integration/targets/service')
-rw-r--r-- | test/integration/targets/service/files/ansible_test_service.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/integration/targets/service/files/ansible_test_service.py b/test/integration/targets/service/files/ansible_test_service.py index c4feed8502..522493fcc7 100644 --- a/test/integration/targets/service/files/ansible_test_service.py +++ b/test/integration/targets/service/files/ansible_test_service.py @@ -3,6 +3,9 @@ # this is mostly based off of the code found here: # http://code.activestate.com/recipes/278731-creating-a-daemon-the-python-way/ +from __future__ import (absolute_import, division, print_function) +__metaclass__ = type + import os import resource import signal |