From 55a9b5035eb1cd51ee6447fbf70a98adf318cc7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20W=C3=BCllhorst?= Date: Sun, 29 May 2016 20:40:45 +0200 Subject: [PATCH] Fixed Issue #1 --- NodeHierarchy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NodeHierarchy.py b/NodeHierarchy.py index 376594e..9d1c433 100755 --- a/NodeHierarchy.py +++ b/NodeHierarchy.py @@ -71,7 +71,7 @@ class NodeHierarchy(object): parser.add_argument('-t', '--targets', nargs='+', required=True, help='List of targets which should be proceeded. Example: -t citya cityb ...') parser.add_argument('-o', '--out-file', required=False, help='Filename where the generated Output should stored.', default='./webserver-configuration') parser.add_argument('-v', '--debug', required=False, action='store_true', help='Enable debugging output.') - parser.add_argument('-f', '--filters', nargs='*', required=False, help='Filter out nodes and local clouds based on filter rules') + parser.add_argument('-f', '--filters', nargs='*', required=False, choices=('exclude_clouds_with_lan_links', 'no_lan'), help='Filter out nodes and local clouds based on filter rules') return parser.parse_args()