From 112b42fb8ade64ec1acc3e6fc17e45ec95e761f8 Mon Sep 17 00:00:00 2001 From: Achilles Rasquinha Date: Tue, 2 Jan 2018 21:06:43 +0530 Subject: [PATCH] minor print error fix --- frappe/commands/site.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/commands/site.py b/frappe/commands/site.py index 0dbc83848f..ecf97c8d56 100755 --- a/frappe/commands/site.py +++ b/frappe/commands/site.py @@ -101,7 +101,7 @@ def restore(context, sql_file_path, mariadb_root_username=None, mariadb_root_pas if not os.path.exists(sql_file_path): sql_file_path = '../' + sql_file_path if not os.path.exists(sql_file_path): - print('Invalid path {0}' + sql_file_path[3:]) + print('Invalid path {0}'.format(sql_file_path[3:])) sys.exit(1) if sql_file_path.endswith('sql.gz'):