diff options
author | Jesusaves <cpntb1@ymail.com> | 2023-06-24 20:11:06 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2023-06-24 20:11:06 -0300 |
commit | 1a8e70be1a4e118fa33e61fd80ab16d4a365710b (patch) | |
tree | b61bc481fcd8e7abcf4a63436112e0854ea20524 | |
parent | 42ad06b70550bc942e45964cfe7b734120985f51 (diff) | |
download | renpy-1a8e70be1a4e118fa33e61fd80ab16d4a365710b.tar.gz renpy-1a8e70be1a4e118fa33e61fd80ab16d4a365710b.tar.bz2 renpy-1a8e70be1a4e118fa33e61fd80ab16d4a365710b.tar.xz renpy-1a8e70be1a4e118fa33e61fd80ab16d4a365710b.zip |
Fix a missing line break
-rw-r--r-- | game/update.rpy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/game/update.rpy b/game/update.rpy index b2dbc68..7b9f555 100644 --- a/game/update.rpy +++ b/game/update.rpy @@ -113,7 +113,7 @@ init python: # This block is 1~60% # But first we check for updates if persistent.host is not None: - stdout("Fetching data from %s" % persistent.host, True) + stdout("Fetching data from %s\n" % persistent.host, True) retry=3 while retry > 0: try: |