$NetBSD: patch-ac,v 1.1 2009/11/18 17:41:20 wiz Exp $

--- src/calibre/utils/help2man.py.orig	2009-09-28 23:23:41.000000000 +0000
+++ src/calibre/utils/help2man.py
@@ -3,7 +3,7 @@ __license__ = 'GPL 3'
 __copyright__ = '2009, Kovid Goyal <kovid@kovidgoyal.net>'
 __docformat__ = 'restructuredtext en'
 
-import time, bz2
+import time
 
 from calibre.constants import __version__, __appname__, __author__
 
@@ -57,6 +57,6 @@ def create_man_page(prog, parser):
     lines = [x if isinstance(x, unicode) else unicode(x, 'utf-8', 'replace') for
             x in lines]
 
-    return  bz2.compress((u'\n'.join(lines)).encode('utf-8'))
+    return  (u'\n'.join(lines)).encode('utf-8')
 
 
