Remove unused parameter to use_runtime()

This commit is contained in:
Mathieu Comandon 2016-10-10 11:58:45 -07:00
parent c10204e22e
commit ceefdc6e4e

View file

@ -177,7 +177,7 @@ class Runner(object):
thread = LutrisThread(command, runner=self, env=env, watch=False)
thread.start()
def use_runtime(self, system_config=None):
def use_runtime(self):
disable_runtime = self.system_config.get('disable_runtime')
env_runtime = os.getenv('LUTRIS_RUNTIME')
if env_runtime and env_runtime.lower() in ('0', 'off'):