Skip to content

Commit e363290

Browse files
committed
Use UTF-8 by default.
1 parent a5b4ee9 commit e363290

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

runserver.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3+
import sys
4+
reload(sys)
5+
sys.setdefaultencoding('utf-8')
6+
37
from os import environ
48
environ['LASTUSER_ENV'] = 'dev'
59

0 commit comments

Comments
 (0)