qtile: 0.10.7 -> 0.11.1

This commit is contained in:
Kamil Chmielewski
2018-05-24 17:25:14 +02:00
parent 5da85431fb
commit bd3489e04a
4 changed files with 15 additions and 15 deletions
@@ -1,13 +1,13 @@
diff --git a/libqtile/manager.py b/libqtile/manager.py
index 36518a74..9b6bdd02 100644
index fc198e9bae7..860b97d8db1 100644
--- a/libqtile/manager.py
+++ b/libqtile/manager.py
@@ -1386,7 +1386,7 @@ class Qtile(command.CommandObject):
@@ -1402,7 +1402,7 @@ class Qtile(command.CommandObject):
logger.error("Unable to pickle qtile state")
argv = [s for s in argv if not s.startswith('--with-state')]
argv.append('--with-state=' + buf.getvalue().decode())
- self.cmd_execute(sys.executable, argv)
+ self.cmd_execute(os.environ.get("QTILE_WRAPPER", "@out@/bin/qtile"), argv[1:])
- self._restart = (sys.executable, argv)
+ self._restart = (os.environ.get("QTILE_WRAPPER", "@out@/bin/qtile"), argv[1:])
self.stop()
def cmd_spawn(self, cmd):
"""Run cmd in a shell.