Change 'print' statement to Python3 version so script can run.

This commit is contained in:
hifikuno 2023-02-27 03:54:11 +00:00
parent c89dcc6c5a
commit cbd1805a00
1 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@ if __name__ == '__main__':
parser.add_argument('--about', action="store_true", help="About Alone Among the Stars") parser.add_argument('--about', action="store_true", help="About Alone Among the Stars")
args = parser.parse_args() args = parser.parse_args()
if args.about: if args.about:
print """Alone Among the Stars print("""Alone Among the Stars
By Takuma Okada | noroadhome.itch.io By Takuma Okada | noroadhome.itch.io
A solo roleplaying game about exploring fantastic planets A solo roleplaying game about exploring fantastic planets
@ -90,7 +90,7 @@ world has unique features for you to discover and record.
In your ship's log, record a short description and your reaction in a few In your ship's log, record a short description and your reaction in a few
sentences, and move on to the next discovery. Each time you complete a planet, sentences, and move on to the next discovery. Each time you complete a planet,
give it a name if it needs one, and find a new planet. give it a name if it needs one, and find a new planet.
""" """)
else: else:
main() main()