Skip to content

Commit

Permalink
* Encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
rustycamper committed Dec 10, 2016
1 parent 2f2cb05 commit 9274beb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion base_translate.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
# encoding: utf-8
# -*- coding: utf-8 -*-

import sys
import argparse
Expand Down
3 changes: 2 additions & 1 deletion google_translate.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python
# encoding: utf-8
# -*- coding: utf-8 -*-

import os
from urllib2 import quote, HTTPError
from hashlib import sha224
Expand Down
3 changes: 2 additions & 1 deletion msft_translate.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python
# encoding: utf-8
# -*- coding: utf-8 -*-

import os
from urllib2 import quote, HTTPError
from hashlib import sha224
Expand Down
2 changes: 1 addition & 1 deletion set_language.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
# encoding: utf-8
# -*- coding: utf-8 -*-

import sys
import re
Expand Down

0 comments on commit 9274beb

Please sign in to comment.