From: Alfredo Deza Date: Tue, 17 Jul 2018 12:14:54 +0000 (-0400) Subject: process: extend_env is not there always, remove it when present X-Git-Tag: 0.0.33~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=332ccff35436442f35e95d0dc4b969e33cdcd1dc;p=remoto.git process: extend_env is not there always, remove it when present Signed-off-by: Alfredo Deza --- diff --git a/remoto/process.py b/remoto/process.py index 112f2d3..bba68e4 100644 --- a/remoto/process.py +++ b/remoto/process.py @@ -94,7 +94,7 @@ def extend_env(conn, arguments): if arguments.get('extend_env'): for key, value in arguments['extend_env'].items(): arguments['env'][key] = value - arguments.pop('extend_env') + arguments.pop('extend_env') return arguments