Commit 591a1dd0 authored by owsla's avatar owsla

Fix for bug #19612 -- Incorrect line broke --no-compression option.

(Fix by Thiago in bug comment)


git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup@803 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
parent 9f0fcbbf
New in v1.1.11 (????/??/??)
---------------------------
Fix for bug #19612 -- Incorrect line broke --no-compression option.
(Fix by Thiago in bug comment)
Fix for bug #19896 -- symlink() doesn't work on a CIFS-mounted Windows
share. (Jonathan Hankins)
......
......@@ -213,7 +213,7 @@ class ErrorLog:
base_rp = Globals.rbdir.append("error_log.%s.data" % (time_string,))
if compress: cls._log_fileobj = rpath.MaybeGzip(base_rp)
else: cls._log_fileobj = cls._log_inc_rp.open("wb", compress = 0)
else: cls._log_fileobj = base_rp.open("wb", compress = 0)
def isopen(cls):
"""True if the error log file is currently open"""
......
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