summaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@cumulusnetworks.com>2017-06-28 18:30:14 +0200
committerQuentin Young <qlyoung@cumulusnetworks.com>2017-06-29 19:38:59 +0200
commit8e25c8ce2ff6718d3c1d6cb5b6df6409147570d6 (patch)
tree313fa8bf14a7154db1cf285e5cc9dc7621f3fdc7 /python
parent*: vty_outln (vty, "") --> vty_out (vty, VTYNL) (diff)
downloadfrr-8e25c8ce2ff6718d3c1d6cb5b6df6409147570d6.tar.xz
frr-8e25c8ce2ff6718d3c1d6cb5b6df6409147570d6.zip
*: rebase vty_outln() -> master
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'python')
-rw-r--r--python/clidef.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/clidef.py b/python/clidef.py
index de3a764a0..1bf3c24aa 100644
--- a/python/clidef.py
+++ b/python/clidef.py
@@ -142,8 +142,8 @@ $argdecls
continue;
_fail = 0;$argblocks
if (_fail)
- vty_out (vty, "%% invalid input for %s: %s%s",
- argv[_i]->varname, argv[_i]->arg, VTY_NEWLINE);
+ vty_outln (vty, "%% invalid input for %s: %s",
+ argv[_i]->varname, argv[_i]->arg);
_failcnt += _fail;
}
if (_failcnt)