X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=xonstat%2Fviews%2Fsubmission.py;h=36e094155953258fbf41ec33f95857c7b35a3e78;hb=08688b3c2a9b1bfcafcb026b1d603e6675892667;hp=0d5acf2befd794103f093a6d1ee9b879cb8e00fa;hpb=e8fdb37d3c9d3651a5b418692ac92460e1fd7182;p=xonotic%2Fxonstat.git diff --git a/xonstat/views/submission.py b/xonstat/views/submission.py index 0d5acf2..36e0941 100755 --- a/xonstat/views/submission.py +++ b/xonstat/views/submission.py @@ -420,7 +420,9 @@ def parse_body(request): (key, value) = line.strip().split(' ', 1) # Server (S) and Nick (n) fields can have international characters. - # We first convert to normal ASCII, then encode them as UTF-8. + # We first convert to UTF-8, then to ASCII. Characters will be lost + # in this conversion for the sake of presenting what otherwise + # would have to use CSS sprites. if key in 'S' 'n': value = qfont_decode(unicode(value, 'utf-8'))