From 79f8af688a7e7e279e12863d12c5b22701a9ba8d Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Tue, 22 Nov 2011 03:15:42 +0000 Subject: [PATCH] Modify log message from Error to Warning level --- deluge/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/config.py b/deluge/config.py index 7539eb97e..d6cab3d80 100644 --- a/deluge/config.py +++ b/deluge/config.py @@ -436,7 +436,7 @@ what is currently in the config and it could not convert the value log.debug("Backing up old config file to %s~", filename) shutil.move(filename, filename + "~") except Exception, e: - log.error("Error backing up old config..") + log.warning("Unable to backup old config...") # The new config file has been written successfully, so let's move it over # the existing one.