30 lines
762 B
Diff
30 lines
762 B
Diff
From b26ab850172a41557cad42cc011bd00d7c108c88 Mon Sep 17 00:00:00 2001
|
|
From: Gris Ge <fge@redhat.com>
|
|
Date: Tue, 23 Feb 2021 13:52:19 +0800
|
|
Subject: [PATCH] nmstatectl: Fix return code of set command
|
|
|
|
The deprecated command `set` should still return the error like
|
|
old behaviour.
|
|
|
|
Signed-off-by: Gris Ge <fge@redhat.com>
|
|
---
|
|
nmstatectl/nmstatectl.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/nmstatectl/nmstatectl.py b/nmstatectl/nmstatectl.py
|
|
index df59942..c94d603 100644
|
|
--- a/nmstatectl/nmstatectl.py
|
|
+++ b/nmstatectl/nmstatectl.py
|
|
@@ -323,7 +323,7 @@ def show(args):
|
|
|
|
def set(args):
|
|
warnings.warn("Using 'set' is deprecated, use 'apply' instead.")
|
|
- apply(args)
|
|
+ return apply(args)
|
|
|
|
|
|
def apply(args):
|
|
--
|
|
2.27.0
|
|
|