summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@vyos.io>2020-05-09 05:04:23 +0700
committerGitHub <noreply@github.com>2020-05-09 05:04:23 +0700
commit4ca0e563861f1d0ebf99afc012a9b95d9492e399 (patch)
tree81e627a2bf8e303d50486f5255aab85773f54411
parent42033d3cc133e25359fe0a3af5643fb5d4a85fe5 (diff)
parente57ebf844259c1c5466024d2cae5fc69c91eb0bc (diff)
downloadvyos-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
-rwxr-xr-xsrc/validators/timezone2
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()