Minor style change

Double-quotes to single-quotes, per SaltStack style guide.
This commit is contained in:
Mike Place 2016-10-21 18:39:40 +09:00 committed by GitHub
parent e3916813bb
commit a606a42575

View File

@ -428,7 +428,7 @@ class SPMClient(object):
else:
response = http.query(dl_path, text=True)
with salt.utils.fopen(out_file, 'w') as outf:
outf.write(response.get("text"))
outf.write(response.get('text'))
self._local_install((None, out_file), package)
return