/usr/share/games/oneisenough/bin/main.py is in oneisenough 0.40-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | '''Game main module.
Contains the entry point used by the run_game.py script.
'''
import os
os.chdir(os.path.dirname(__file__))
import mainmenu
def main():
mainmenu.run()
return
|