summaryrefslogtreecommitdiffstats
path: root/deluge/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'deluge/config.py')
-rw-r--r--deluge/config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/deluge/config.py b/deluge/config.py
index ff231691c..8c963c289 100644
--- a/deluge/config.py
+++ b/deluge/config.py
@@ -486,8 +486,8 @@ what is currently in the config and it could not convert the value
# Make a backup of the old config
try:
- log.debug("Backing up old config file to %s~", filename)
- shutil.move(filename, filename + "~")
+ log.debug("Backing up old config file to %s.bak", filename)
+ shutil.move(filename, filename + ".bak")
except Exception, e:
log.warning("Unable to backup old config...")