From ae19c042b75e66f542a132748d89d691d0ffb1e9 Mon Sep 17 00:00:00 2001 From: TJ Date: Sun, 1 Dec 2013 15:56:50 +0000 Subject: [PATCH] base2-runner: fix typos causing syntax errors --- base2-runner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base2-runner.py b/base2-runner.py index 6f274ae..cf42f31 100755 --- a/base2-runner.py +++ b/base2-runner.py @@ -144,7 +144,7 @@ class Base2Runner(object): return error_code - def main(self, args, env) + def main(self, args, env): """ entry point for starting the game """ time.sleep(10) # keep splash screen up for a little longer return self.play() @@ -164,6 +164,6 @@ if __name__ == '__main__': resources['soundtrack.url'] = 'http://freemusicarchive.org/music/Rolemusic/' # instantiate the program, which will also initialise the display and show a splash screen - app = Base2Runner(iwidth=900, height=600, title="Base² Runner", resources=resources, debug=True) + app = Base2Runner(width=900, height=600, title="Base² Runner", resources=resources, debug=True) # start the program with any command-line arguments and environment and exit using any error code it returns exit( app.main(sys.argv[1:], os.environ) ) -- 2.17.1