Skip to content

Instantly share code, notes, and snippets.

@yudanta
Created August 3, 2014 12:34
Show Gist options
  • Save yudanta/c42da21b089692e31c92 to your computer and use it in GitHub Desktop.
Save yudanta/c42da21b089692e31c92 to your computer and use it in GitHub Desktop.
prevent ascii error
#prevent ascii error
#place at the top of the file :D
import codecs
import sys
streamWriter = codecs.lookup('utf-8')[-1]
sys.stdout = streamWriter(sys.stdout)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment