Browse Source

chore: Remove f prefix on plain string

version-14
Gavin D'souza 4 years ago
parent
commit
134b2dcd5c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      frappe/search/website_search.py

+ 1
- 1
frappe/search/website_search.py View File

@@ -40,7 +40,7 @@ class WebsiteSearch(FullTextSearch):
self._items_to_index = []

for i, route in enumerate(routes):
update_progress_bar(f"Retrieving Routes", i, len(routes))
update_progress_bar("Retrieving Routes", i, len(routes))
self._items_to_index += [self.get_document_to_index(route)]

print()


Loading…
Cancel
Save