Return True after winesteam's installed, so play() goes on

This commit is contained in:
Xodetaetl 2014-11-11 19:26:47 +01:00
parent 7a8b14e5ee
commit d6952578d3
2 changed files with 2 additions and 1 deletions

View file

@ -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

View file

@ -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()