]> de.git.xonotic.org Git - xonotic/xonstat.git/commitdiff
Fix accuracy of comment to clarify intent.
authorAnt Zucaro <azucaro@gmail.com>
Mon, 21 Nov 2011 18:15:21 +0000 (13:15 -0500)
committerAnt Zucaro <azucaro@gmail.com>
Mon, 21 Nov 2011 18:15:21 +0000 (13:15 -0500)
xonstat/views/submission.py

index 0d5acf2befd794103f093a6d1ee9b879cb8e00fa..36e094155953258fbf41ec33f95857c7b35a3e78 100755 (executable)
@@ -420,7 +420,9 @@ def parse_body(request):
             (key, value) = line.strip().split(' ', 1)\r
 \r
             # Server (S) and Nick (n) fields can have international characters.\r
-            # We first convert to normal ASCII, then encode them as UTF-8.\r
+            # We first convert to UTF-8, then to ASCII. Characters will be lost\r
+            # in this conversion for the sake of presenting what otherwise \r
+            # would have to use CSS sprites.\r
             if key in 'S' 'n':\r
                 value = qfont_decode(unicode(value, 'utf-8'))\r
     \r