From 75d74c252ed41f122952a0815ff1740917191bc3 Mon Sep 17 00:00:00 2001 From: Ryan Stein Date: Sun, 29 Oct 2017 22:54:43 -0400 Subject: [PATCH] Remove sitecustomize.py, unnecessary for Py3 now. --- sitecustomize.py | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 sitecustomize.py diff --git a/sitecustomize.py b/sitecustomize.py deleted file mode 100644 index 39b6e373a3..0000000000 --- a/sitecustomize.py +++ /dev/null @@ -1,11 +0,0 @@ -""" -This special Python config file sets the default encoding for -the codebase to UTF-8 instead of ascii. This allows for just -about any language to be used in-game. - -It is not advisable to change the value set below, as -there will be a lot of encoding errors that result in -server crashes. -""" -import sys -sys.setdefaultencoding('utf-8')