From b217ff86ed3cadf0bd3a77e44b1fec3cd75c6a35 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Thu, 8 Aug 2019 16:59:53 +0530 Subject: [PATCH] fix: translation --- frappe/integrations/doctype/google_calendar/google_calendar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/integrations/doctype/google_calendar/google_calendar.py b/frappe/integrations/doctype/google_calendar/google_calendar.py index 62099fb72f..53b792467a 100644 --- a/frappe/integrations/doctype/google_calendar/google_calendar.py +++ b/frappe/integrations/doctype/google_calendar/google_calendar.py @@ -260,7 +260,7 @@ def sync_events_from_google_calendar(g_calendar, method=None, page_length=10): else: pass - return _("{} Google Calendar Events Synced.").format(len(results) if results else "No") + return _("{0} Google Calendar Events Synced.").format(len(results) if results else "No") def insert_event_to_calendar(account, event, recurrence=None): """