diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-01-09 14:35:42 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-01-09 14:35:42 +0100 |
commit | 586b440a835cba7d45e50bb6d1781823903332b6 (patch) | |
tree | 29e2507dd45bbfe935e9fe36f8914945a63dd725 | |
parent | e480f340a5251412d858eb50b5d9763357363bb0 (diff) | |
download | vyos-1x-586b440a835cba7d45e50bb6d1781823903332b6.tar.gz vyos-1x-586b440a835cba7d45e50bb6d1781823903332b6.zip |
login: radius: T3192: remove debug print()
-rwxr-xr-x | src/conf_mode/system-login.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/conf_mode/system-login.py b/src/conf_mode/system-login.py index 82accd404..10d297aff 100755 --- a/src/conf_mode/system-login.py +++ b/src/conf_mode/system-login.py @@ -84,7 +84,6 @@ def get_config(config=None): # XXX: for a yet unknown reason when we only have one source-address # get_config_dict() will show a string over a string if 'radius' in login and 'source_address' in login['radius']: - print(type(login['radius']['source_address'])) if isinstance(login['radius']['source_address'], str): login['radius']['source_address'] = [login['radius']['source_address']] |