diff options
author | Scott Moser <smoser@ubuntu.com> | 2012-11-20 01:04:31 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2012-11-20 01:04:31 -0500 |
commit | 3cb9a6ed620ab9200a18bf69cdac5ac518ca214c (patch) | |
tree | dbaff893eac436880e92ce3e5921f954b3b1bb4a /tests/unittests | |
parent | 7a7cf335453146a775c8566e5a4ed4716a03a874 (diff) | |
download | vyos-cloud-init-3cb9a6ed620ab9200a18bf69cdac5ac518ca214c.tar.gz vyos-cloud-init-3cb9a6ed620ab9200a18bf69cdac5ac518ca214c.zip |
pep8 and pylint
Diffstat (limited to 'tests/unittests')
-rw-r--r-- | tests/unittests/test_distros/test_generic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unittests/test_distros/test_generic.py b/tests/unittests/test_distros/test_generic.py index 3ca769b4..7befb8c8 100644 --- a/tests/unittests/test_distros/test_generic.py +++ b/tests/unittests/test_distros/test_generic.py @@ -55,7 +55,7 @@ class TestGenericDistro(helpers.FilesystemMockingTestCase): # Make a temp directoy for tests to use. self.tmp = self.makeDir() - def _write_load_sudoers(self, user, rules): + def _write_load_sudoers(self, _user, rules): cls = distros.fetch("ubuntu") d = cls("ubuntu", {}, None) os.makedirs(os.path.join(self.tmp, "etc")) |