We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reported via email by Thomas Goff:
diff --git a/src/emanesh/emanesh/emaneshell.py b/src/emanesh/emanesh/emaneshell.py index 79f3bd9..59d51c4 100644 --- a/src/emanesh/emanesh/emaneshell.py +++ b/src/emanesh/emanesh/emaneshell.py @@ -674,7 +674,7 @@ class EMANEShell(cmd.Cmd): <nem> ::= [1-9] | [1-9][0-9]+ <expressions> ::= <expression> | <expression> <expressions> <expression> ::= <name>'='<values> - <name> ::= [A-Za-z0-9]+ + <name> ::= [.A-Za-z0-9]+ <values> ::= <value> | <value>','<values> <value> ::= value-string @@ -751,7 +751,7 @@ class EMANEShell(cmd.Cmd): updates = [] if len(args) > index: for expression in args[index:]: - m = re.match('^([0-9A-Za-z]+)=(.+)', expression) + m = re.match('^([.0-9A-Za-z]+)=(.+)', expression) def toBool(val): val = val.lower()
The text was updated successfully, but these errors were encountered:
Allow periods in config parameter names during emanesh set config
371ec97
commands. Submitted-by: Thomas Goff <thomas.goff@ll.mit.edu> See #47
sgalgano
No branches or pull requests
Reported via email by Thomas Goff:
The text was updated successfully, but these errors were encountered: