From: Christian Heller Date: Tue, 3 Mar 2015 11:46:00 +0000 (+0100) Subject: Server/py: Apply PEP8. X-Git-Tag: tce~427 X-Git-Url: https://plomlompom.com/repos/?p=plomrogue;a=commitdiff_plain;h=5dc78114ff22e393c72261920bf2b8a78a7852b7 Server/py: Apply PEP8. --- diff --git a/plomrogue-server.py b/plomrogue-server.py index 929edbb..b5e4db6 100755 --- a/plomrogue-server.py +++ b/plomrogue-server.py @@ -138,8 +138,8 @@ def save_world(): length = world_db["MAP_LENGTH"] for i in range(length): line = map[i * length:(i * length) + length].decode() - string = string + key + " " + str(i) + " " + quote(line) + \ - "\n" + string = string + key + " " + str(i) + " " + quote(line) \ + + "\n" return string return helper @@ -750,7 +750,7 @@ def setter_tpos(axis): world_db["Things"][command_tid.id]["T_POS" + axis] = val if world_db["WORLD_ACTIVE"] \ and world_db["Things"][command_tid.id]["T_LIFEPOINTS"]: - build_fov_map( world_db["Things"][command_tid.id]) + build_fov_map(world_db["Things"][command_tid.id]) if 0 == command_tid.id: update_map_memory(world_db["Things"][command_tid.id]) else: