Fix call to sync_with_lutris()

Was running into this error...

```
service.sync_with_lutris()
TypeError: sync_with_lutris() missing 1 required positional argument: 'games'
```
This commit is contained in:
Rob Loach 2018-11-26 02:02:19 -05:00 committed by Mathieu Comandon
parent 8263ec00b2
commit b6993e0c99

View file

@ -118,7 +118,7 @@ class LutrisWindow(Gtk.ApplicationWindow):
# Sync local lutris library with current Steam games and desktop games
for service in get_services_synced_at_startup():
service.sync_with_lutris()
service.sync_with_lutris([])
# Window initialization
self.game_list = pga.get_games(show_installed_first=self.show_installed_first)