From 568195ca492756ae47491ccbf18e5bca80b1f124 Mon Sep 17 00:00:00 2001 From: Quan Guo Date: Mon, 29 Feb 2016 21:28:51 +0100 Subject: [PATCH 1/1] Fix the deprecation warning: awful.util.spawn_with_shell --- asyncshell.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/asyncshell.lua b/asyncshell.lua index 2d6b7e3..a8e3676 100644 --- a/asyncshell.lua +++ b/asyncshell.lua @@ -52,7 +52,11 @@ function asyncshell.request(command, callback, timeout) id, formatted_command ) - awful.util.spawn_with_shell(req) + if type(awful.spawn) == 'table' then + awful.spawn.with_shell(req) + else + awful.util.spawn_with_shell(req) + end if timeout then asyncshell.request_table[id].timer = timer({ timeout = timeout }) -- 2.39.5