summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xscripts/lib/resulttool/manualexecution.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/lib/resulttool/manualexecution.py b/scripts/lib/resulttool/manualexecution.py
index 6487cd9bff..8ce7903892 100755
--- a/scripts/lib/resulttool/manualexecution.py
+++ b/scripts/lib/resulttool/manualexecution.py
@@ -45,9 +45,9 @@ class ManualTestRunner(object):
45 def _get_input(self, config): 45 def _get_input(self, config):
46 while True: 46 while True:
47 output = input('{} = '.format(config)) 47 output = input('{} = '.format(config))
48 if re.match('^[a-zA-Z0-9_-]+$', output): 48 if re.match('^[a-z0-9-.]+$', output):
49 break 49 break
50 print('Only alphanumeric and underscore/hyphen are allowed. Please try again') 50 print('Only lowercase alphanumeric, hyphen and dot are allowed. Please try again')
51 return output 51 return output
52 52
53 def _create_config(self): 53 def _create_config(self):