diff options
author | Daniil Baturin <daniil@vyos.io> | 2020-05-09 05:04:23 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-09 05:04:23 +0700 |
commit | 4ca0e563861f1d0ebf99afc012a9b95d9492e399 (patch) | |
tree | 81e627a2bf8e303d50486f5255aab85773f54411 /src/validators/timezone | |
parent | 42033d3cc133e25359fe0a3af5643fb5d4a85fe5 (diff) | |
parent | e57ebf844259c1c5466024d2cae5fc69c91eb0bc (diff) | |
download | vyos-1x-4ca0e563861f1d0ebf99afc012a9b95d9492e399.tar.gz vyos-1x-4ca0e563861f1d0ebf99afc012a9b95d9492e399.zip |
Merge pull request #405 from kroy-the-rabbit/patch-1
T2441: Fix parse error in TZ validator
Diffstat (limited to 'src/validators/timezone')
-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() |