aboutsummaryrefslogtreecommitdiff
path: root/elogv
diff options
context:
space:
mode:
Diffstat (limited to 'elogv')
-rwxr-xr-xelogv12
1 files changed, 2 insertions, 10 deletions
diff --git a/elogv b/elogv
index b3455c7..94d466a 100755
--- a/elogv
+++ b/elogv
@@ -33,6 +33,7 @@ import gettext
import locale
import gzip
import bz2
+import lzma
import signal
_LOCALE_CATEGORY_PAIRS = (
@@ -46,12 +47,6 @@ _LOCALE_CATEGORY_PAIRS = (
(locale.LC_ALL, 'LC_ALL'),
)
-no_liblzma = False
-try:
- import liblzma
-except ImportError:
- no_liblzma = True
-
def report_bad_locale(variable, value):
py_version = '%s.%s.%s' % sys.version_info[:3]
@@ -421,10 +416,7 @@ class ElogViewer:
@staticmethod
def open(file, mode='rt'):
if file.endswith('.xz'):
- if not no_liblzma:
- return liblzma.LZMAFile(file)
- else:
- sys.exit('You need pyliblzma library to be able to read xz compressed elog files.\nhttp://pypi.python.org/pypi/pyliblzma')
+ return lzma.open(file, mode=mode)
elif file.endswith('.gz'):
return gzip.open(file, mode=mode)
elif file.endswith('.bz2'):