From 7c3cb5a368c4e13a386c3d493564af56db57a5f1 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Mon, 4 Mar 2019 14:57:27 +0100 Subject: [PATCH] +args fix --- p4app/controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p4app/controller.py b/p4app/controller.py index 27b7011..268250b 100644 --- a/p4app/controller.py +++ b/p4app/controller.py @@ -258,7 +258,7 @@ class L2Controller(object): self.args = parser.parse_args() self.mode = self.args.mode - self.debug = args.debug + self.debug = self.args.debug if __name__ == "__main__": import sys