From 64f0809dc98a93ee8fe547eb7c45d2c585c0ec65 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Tue, 1 May 2012 01:04:31 +0530 Subject: [PATCH] fix in backups --- py/webnotes/utils/backups.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/webnotes/utils/backups.py b/py/webnotes/utils/backups.py index cabc3a5f71..f3454921fe 100644 --- a/py/webnotes/utils/backups.py +++ b/py/webnotes/utils/backups.py @@ -37,7 +37,7 @@ from datetime import datetime import conf from conf import backup_path subdomain = webnotes.conn.get_value('Website Settings', 'Website Settings', 'subdomain') -backup_link_path = "/".join('http:/', subdomain, 'backups') +backup_link_path = "/".join(['http:/', subdomain, 'backups']) verbose = 0 #-------------------------------------------------------------------------------