summaryrefslogtreecommitdiff
path: root/game
diff options
context:
space:
mode:
Diffstat (limited to 'game')
-rw-r--r--game/core.rpy2
1 files changed, 1 insertions, 1 deletions
diff --git a/game/core.rpy b/game/core.rpy
index d28539f..0e09f0b 100644
--- a/game/core.rpy
+++ b/game/core.rpy
@@ -172,7 +172,7 @@ init -3 python:
stdout("Fetching SSL Certificate from %s" % VAULT_CERT)
r = requests.get(VAULT_CERT)
if (r.status_code != 200):
- raise Exception("\nFailed to fetch Vault SSL Certificate.\b\n Returned HTTP error %d.\n\nClick \"Ignore\" to retry.\n\n" % r.status_code)
+ raise Exception("\nFailed to fetch Vault SSL Certificate.\n\n Returned HTTP error %d.\n\nClick \"Ignore\" to retry.\n\n" % r.status_code)
# Save it
with open(get_path("cert.pem"), 'wb') as fd:
for chunk in r.iter_content(chunk_size=128):