diff options
author | kroy-the-rabbit <kroy@kroy.io> | 2020-05-08 17:02:36 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-08 17:02:36 -0500 |
commit | e57ebf844259c1c5466024d2cae5fc69c91eb0bc (patch) | |
tree | 81e627a2bf8e303d50486f5255aab85773f54411 | |
parent | 42033d3cc133e25359fe0a3af5643fb5d4a85fe5 (diff) | |
download | vyos-1x-e57ebf844259c1c5466024d2cae5fc69c91eb0bc.tar.gz vyos-1x-e57ebf844259c1c5466024d2cae5fc69c91eb0bc.zip |
T2441: Fix parse error
-rwxr-xr-x | src/validators/timezone | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/validators/timezone b/src/validators/timezone index 7e4534b57..baf5abca2 100755 --- a/src/validators/timezone +++ b/src/validators/timezone @@ -29,5 +29,5 @@ if __name__ == '__main__': tz_data = tz_data.split('\n') if args.validate not in tz_data: - sys.exit("the timezone can't be found in the timezone list') + sys.exit("the timezone can't be found in the timezone list") sys.exit() |