Commit 184fb1c0 authored by Vincent Pelletier's avatar Vincent Pelletier

Fix LZMAError origin.

parent ac1f46f5
...@@ -70,7 +70,7 @@ try: ...@@ -70,7 +70,7 @@ try:
except ImportError: except ImportError:
pass pass
else: else:
FILE_OPENER_LIST.append((lzma.open, lzma._lzma.LZMAError)) FILE_OPENER_LIST.append((lzma.open, lzma.LZMAError))
MONTH_VALUE_DICT = dict((y, x) for (x, y) in enumerate(('Jan', 'Feb', 'Mar', MONTH_VALUE_DICT = dict((y, x) for (x, y) in enumerate(('Jan', 'Feb', 'Mar',
'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'), 1)) 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'), 1))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment