From a50c83c2847b674eb5b5c26179bfa1d661beda08 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 1b30d30c8..ed6c199b8 100644 --- a/deluge/config.py +++ b/deluge/config.py @@ -463,7 +463,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.