From: Paul Vinciguerra Date: Mon, 21 Jan 2019 00:36:01 +0000 (-0800) Subject: VTL: test/lisp.py Fix recursion error. X-Git-Tag: v19.04-rc1~629 X-Git-Url: https://gerrit.fd.io/r/gitweb?p=vpp.git;a=commitdiff_plain;h=a0d82d68108a65ee28f7629da7eed74005b131c4 VTL: test/lisp.py Fix recursion error. Accessing priority causes a recursion error. Change-Id: Ic8cc5c9e198b7da955bc24ea116e9826004cad5e Signed-off-by: Paul Vinciguerra --- 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):