From: Christian Heller <c.heller@plomlompom.de>
Date: Sat, 28 Nov 2015 14:33:17 +0000 (+0100)
Subject: New client: Proper indentation.
X-Git-Tag: tce~243
X-Git-Url: https://plomlompom.com/repos/%7B%7Bdb.prefix%7D%7D/%7B%7B%20web_path%20%7D%7D/static/%7B%7Bprefix%7D%7D/calendar?a=commitdiff_plain;h=ab7a32f5b502d7424edab86f9ee1c57bba00a70a;p=plomrogue

New client: Proper indentation.
---

diff --git a/client_prototype.py b/client_prototype.py
index 582df07..2fc7a44 100644
--- a/client_prototype.py
+++ b/client_prototype.py
@@ -86,7 +86,7 @@ def set_window_geometries():
 def draw_screen():
 
     def healthy_addch(y, x, char, attr=0):
-    """Bizarre workaround for <http://stackoverflow.com/questions/7063128/>."""
+        """Workaround for <http://stackoverflow.com/questions/7063128/>."""
         if y == screen_size[0] - 1 and x == screen_size[1] - 1:
             char_before = stdscr.inch(y, x - 1)
             stdscr.addch(y, x - 1, char, attr)