From ba01fc3996e565eab188235611e7eaa818a5828c Mon Sep 17 00:00:00 2001 From: checktheroads Date: Sun, 16 Jun 2019 23:41:21 -0700 Subject: [PATCH] fixed pprint syntax error --- ci/ci_test.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ci/ci_test.py b/ci/ci_test.py index d81f0a4..de06bdb 100755 --- a/ci/ci_test.py +++ b/ci/ci_test.py @@ -5,7 +5,7 @@ Runs tests against test hyperglass instance import os import sys import json -import pprint +from pprint import pprint import requests from logzero import logger @@ -174,7 +174,8 @@ def ci_hyperglass_test( if __name__ == "__main__": - logger.debug(pprint(get_hyperglass_config())) + hg_config = get_hyperglass_config() + logger.debug(pprint(hg_config)) ci_hyperglass_test( "pop2", "1.1.1.0/24", "2606:4700:4700::/48", "pop1", "100.64.0.1" )