diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-11-02 19:44:38 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-11-02 19:44:38 -0300 |
commit | 51ba06d1391f6b8cc93f7badf5cc8e511298e4c8 (patch) | |
tree | 5d8d1a4e1373862f4cb801fa55a82576221d1227 /game/core.rpy | |
parent | e87dd769c80af46726e16a27cd65b9a312413d47 (diff) | |
download | renpy-51ba06d1391f6b8cc93f7badf5cc8e511298e4c8.tar.gz renpy-51ba06d1391f6b8cc93f7badf5cc8e511298e4c8.tar.bz2 renpy-51ba06d1391f6b8cc93f7badf5cc8e511298e4c8.tar.xz renpy-51ba06d1391f6b8cc93f7badf5cc8e511298e4c8.zip |
Fix a couple minor bugs
Diffstat (limited to 'game/core.rpy')
-rw-r--r-- | game/core.rpy | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/game/core.rpy b/game/core.rpy index 5f5c292..8dbd79e 100644 --- a/game/core.rpy +++ b/game/core.rpy @@ -29,12 +29,12 @@ init -3 python: # This is Python 3.x execute=subprocess.run LEGACY = False - print("Python 3.x detected! Version is %d. Compatibility mode enabled!" % PYTHON_VERSION) + print("Python 3.x detected! Version is %d." % PYTHON_VERSION) else: # This is Python 2.7 execute=subprocess.call LEGACY = True - print("Python 2.7 detected! Setting legacy mode... (ver: %d)" % PYTHON_VERSION) + print("Python 2.7 detected! Compatibility mode enabled! (ver: %d)" % PYTHON_VERSION) ############################################################################# # Functions |