diff options
author | Scott Moser <smoser@brickies.net> | 2016-12-23 10:14:06 -0500 |
---|---|---|
committer | Scott Moser <smoser@brickies.net> | 2016-12-23 10:14:06 -0500 |
commit | 48bef0391a10fe9f914ec5b91a615688f91c21be (patch) | |
tree | 868ee42ddc491ff633d97e35d8c8f81fbf844c54 /tests/cloud_tests | |
parent | f53fc46aa732e3b29991b3e5e39da31a722945ee (diff) | |
download | vyos-cloud-init-48bef0391a10fe9f914ec5b91a615688f91c21be.tar.gz vyos-cloud-init-48bef0391a10fe9f914ec5b91a615688f91c21be.zip |
pep8: fix issue found in zesty build with pycodestyle.
pycodestyle has better checking for 2 lines blank lines.
This failed to build on zesty as a result.
Patching this here, and filed bug 1652329 to fix it more permenantly.
Diffstat (limited to 'tests/cloud_tests')
-rw-r--r-- | tests/cloud_tests/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/cloud_tests/__init__.py b/tests/cloud_tests/__init__.py index 3dbce261..099c357f 100644 --- a/tests/cloud_tests/__init__.py +++ b/tests/cloud_tests/__init__.py @@ -25,6 +25,7 @@ def _initialize_logging(): return logger + LOG = _initialize_logging() # vi: ts=4 expandtab |