From 0eb9fc5eec1def4e919aa78d7e629e10e98c9f66 Mon Sep 17 00:00:00 2001 From: Sahil Khan Date: Thu, 9 May 2019 14:52:37 +0530 Subject: [PATCH] fix(sync_site): syntax error --- frappe/utils/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/utils/__init__.py b/frappe/utils/__init__.py index 73cd7deec3..88d02be625 100644 --- a/frappe/utils/__init__.py +++ b/frappe/utils/__init__.py @@ -541,7 +541,7 @@ def get_site_info(): system_settings = frappe.db.get_singles_dict('System Settings') space_usage = frappe._dict((frappe.local.conf.limits or {}).get('space_usage', {})) - kwargs = {"fields": ["user", "creation", "full_name"], "filters":{"Operation": "Login", "Status": "Success"}, "limit": "10 + kwargs = {"fields": ["user", "creation", "full_name"], "filters":{"Operation": "Login", "Status": "Success"}, "limit": "10"} site_info = { 'installed_apps': get_installed_apps_info(),