Merge pull request #45644 from twangboy/win_fix_dep_warns

Add missing space to deprecation warning
This commit is contained in:
Nicole Thomas 2018-01-23 16:55:10 -05:00 committed by GitHub
commit 8a95fc4257
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -305,7 +305,7 @@ def list_update(name, download=False, install=False):
'''
salt.utils.warn_until(
'Fluorine',
'This function is replaced by \'get\' as of Salt 2017.7.0. This'
'This function is replaced by \'get\' as of Salt 2017.7.0. This '
'warning will be removed in Salt Fluorine.')
return get(name, download, install)
@ -532,7 +532,7 @@ def list_updates(software=True,
'''
salt.utils.warn_until(
'Fluorine',
'This function is replaced by \'list\' as of Salt 2017.7.0. This'
'This function is replaced by \'list\' as of Salt 2017.7.0. This '
'warning will be removed in Salt Fluorine.')
return list(software, drivers, summary, skip_installed, categories,
severities, download, install)
@ -720,7 +720,7 @@ def download_update(name):
'''
salt.utils.warn_until(
'Fluorine',
'This function is replaced by \'download\' as of Salt 2017.7.0. This'
'This function is replaced by \'download\' as of Salt 2017.7.0. This '
'warning will be removed in Salt Fluorine.')
return download(name)
@ -752,7 +752,7 @@ def download_updates(names):
'''
salt.utils.warn_until(
'Fluorine',
'This function is replaced by \'download\' as of Salt 2017.7.0. This'
'This function is replaced by \'download\' as of Salt 2017.7.0. This '
'warning will be removed in Salt Fluorine.')
return download(names)
@ -840,7 +840,7 @@ def install_update(name):
'''
salt.utils.warn_until(
'Fluorine',
'This function is replaced by \'install\' as of Salt 2017.7.0. This'
'This function is replaced by \'install\' as of Salt 2017.7.0. This '
'warning will be removed in Salt Fluorine.')
return install(name)
@ -871,7 +871,7 @@ def install_updates(names):
'''
salt.utils.warn_until(
'Fluorine',
'This function is replaced by \'install\' as of Salt 2017.7.0. This'
'This function is replaced by \'install\' as of Salt 2017.7.0. This '
'warning will be removed in Salt Fluorine.')
return install(names)