Cast exception to string (Closes #3342)

This commit is contained in:
Mathieu Comandon 2020-12-24 12:58:40 -08:00
parent e1b6ddea5b
commit 367d0d51f1

View file

@ -139,7 +139,7 @@ class ServiceSidebarRow(SidebarRow):
if not error and not games:
error = _("Failed to load games. Check that your profile is set to public during the sync.")
if error:
ErrorDialog(error)
ErrorDialog(str(error))
GLib.timeout_add(5000, self.enable_refresh_button)
def enable_refresh_button(self):