Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 412429 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-2 / +3 lines)
Line  Link Here
0
-- src/util.py
0
++ src/util.py
Lines 202-209 Link Here
202
202
203
def open_file_read(f):
203
def open_file_read(f):
204
    '''Opens the specified file read-only'''
204
    '''Opens the specified file read-only'''
205
    import codecs
205
    try:
206
    try:
206
        orig = open(fn, 'r')
207
        orig = codecs.open(fn, 'r', "UTF-8")
207
    except Exception:
208
    except Exception:
208
        raise
209
        raise
209
210

Return to bug 412429