diff options
author | Daniil Baturin <daniil@vyos.io> | 2020-12-22 22:03:02 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-22 22:03:02 +0700 |
commit | 3fd31206fd6f00e407147e14877b0c70aacd3770 (patch) | |
tree | 2bf053a31fd456f3a210a05845f5642659854fda | |
parent | b0c8fb08c55d6c54b15bf6829b2996c583bd7e11 (diff) | |
parent | 2426bae1e644741051eb65870e42d04ae4047dc9 (diff) | |
download | vyos-1x-3fd31206fd6f00e407147e14877b0c70aacd3770.tar.gz vyos-1x-3fd31206fd6f00e407147e14877b0c70aacd3770.zip |
Merge pull request #656 from sever-sever/T2859
op-mode: T2859: Fix show nat source translations
-rwxr-xr-x | src/op_mode/show_nat_translations.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/op_mode/show_nat_translations.py b/src/op_mode/show_nat_translations.py index 3af33b78e..04c20e584 100755 --- a/src/op_mode/show_nat_translations.py +++ b/src/op_mode/show_nat_translations.py @@ -193,8 +193,10 @@ def main(): elif arg.file: process(content(arg.file), arg.stats, arg.proto, arg.pipe, arg.verbose, arg.type) else: - process(run(command(arg.type, arg.proto, arg.ipaddr)), arg.stats, arg.proto, arg.pipe, arg.verbose, arg.type) - + try: + process(run(command(arg.type, arg.proto, arg.ipaddr)), arg.stats, arg.proto, arg.pipe, arg.verbose, arg.type) + except: + pass if __name__ == '__main__': main() |