Import unicode_literals from future and add versionadded tag

This commit is contained in:
Thomas Lemarchand 2018-11-15 17:58:08 +01:00 committed by Gareth J. Greenaway
parent 09dc09d88d
commit af6d21f772
No known key found for this signature in database
GPG key ID: 10B62F8A7CAD7A41
2 changed files with 4 additions and 2 deletions

View file

@ -6,10 +6,11 @@ Microsoft Update files management via wusa.exe
:platform: Windows
:depends: PowerShell
.. versionadded:: Neon
'''
# Import python libs
from __future__ import absolute_import
from __future__ import absolute_import, unicode_literals
import logging
# Import salt libs

View file

@ -5,10 +5,11 @@ Microsoft Updates (KB) Management
This module provides the ability to enforce KB installations
from files (.msu), without WSUS.
.. versionadded:: Neon
'''
# Import python libs
from __future__ import absolute_import
from __future__ import absolute_import, unicode_literals
import logging
# Import salt libs