Fix _BaseUserscriptRunner when env is None.

This commit is contained in:
Florian Bruhin 2015-12-18 20:23:39 +01:00
parent 1e43b882ae
commit f787f004af

View File

@ -108,7 +108,8 @@ class _BaseUserscriptRunner(QObject):
verbose: Show notifications when the command started/exited. verbose: Show notifications when the command started/exited.
""" """
self._env = {'QUTE_FIFO': self._filepath} self._env = {'QUTE_FIFO': self._filepath}
self._env.update(env) if env is not None:
self._env.update(env)
self._proc = guiprocess.GUIProcess(self._win_id, 'userscript', self._proc = guiprocess.GUIProcess(self._win_id, 'userscript',
additional_env=self._env, additional_env=self._env,
verbose=verbose, parent=self) verbose=verbose, parent=self)