Add missing space to deprecation warning

This commit is contained in:
twangboy 2018-01-23 13:01:50 -07:00
parent 0931b6417d
commit de9bc384cc
No known key found for this signature in database
GPG key ID: 93FF3BDEB278C9EB

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)