From 0f80c90dbb17175ac09cb2e6a34afe95271bdc8a Mon Sep 17 00:00:00 2001 From: Gilles Debunne <63719587+gdebunne@users.noreply.github.com> Date: Wed, 22 Apr 2020 10:28:33 +0200 Subject: [PATCH] Fix, decode binary to ascii --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 121feb7..0d434a0 100644 --- a/README.rst +++ b/README.rst @@ -156,7 +156,7 @@ or with python version 3: .. code:: console - python -c 'import urllib.request; print(urllib.request.urlopen("https://bootstrap.saltstack.com").read())' > bootstrap-salt.sh + python -c 'import urllib.request; print(urllib.request.urlopen("https://bootstrap.saltstack.com").read().decode("ascii"))' > bootstrap-salt.sh Install using fetch ~~~~~~~~~~~~~~~~~~~