From a0d82d68108a65ee28f7629da7eed74005b131c4 Mon Sep 17 00:00:00 2001 From: Paul Vinciguerra Date: Sun, 20 Jan 2019 16:36:01 -0800 Subject: VTL: test/lisp.py Fix recursion error. Accessing priority causes a recursion error. Change-Id: Ic8cc5c9e198b7da955bc24ea116e9826004cad5e Signed-off-by: Paul Vinciguerra --- test/lisp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/lisp.py') diff --git a/test/lisp.py b/test/lisp.py index 7b803adb072..2dace8f2f74 100644 --- a/test/lisp.py +++ b/test/lisp.py @@ -64,7 +64,7 @@ class VppLispLocator(VppObject): @property def priority(self): - return self.priority + return self._priority @property def weight(self): -- cgit 1.2.3-korg