From d6952578d3e7c546d3aef53387b314cf13f5493d Mon Sep 17 00:00:00 2001 From: Xodetaetl Date: Tue, 11 Nov 2014 19:26:47 +0100 Subject: [PATCH] Return True after winesteam's installed, so play() goes on --- docs/installers.rst | 2 +- lutris/runners/winesteam.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/installers.rst b/docs/installers.rst index 4e2170986..f7451d192 100644 --- a/docs/installers.rst +++ b/docs/installers.rst @@ -209,7 +209,7 @@ Example: Writing into an INI type config file ------------------------------------ -Modify or create a config file with the ``set_config`` directive. A config file +Modify or create a config file with the ``write_config`` directive. A config file is a text file composed of key=value (or key: value) lines grouped under [sections]. Use the ``file`` (an absolute path or a ``file id``), ``section``, ``key`` and ``value`` parameters. Not that the file is entirely rewritten and diff --git a/lutris/runners/winesteam.py b/lutris/runners/winesteam.py index 0b75f8972..9502f1ca6 100644 --- a/lutris/runners/winesteam.py +++ b/lutris/runners/winesteam.py @@ -174,6 +174,7 @@ class winesteam(wine.wine): installer_path = download_steam() prefix = self.get_or_create_default_prefix() self.msi_exec(installer_path, quiet=True, prefix=prefix) + return True def is_wine_installed(self): return super(winesteam, self).is_installed()