##// END OF EJS Templates
Don't let invalid aliases crash IPython...
MinRK -
Show More
@@ -502,7 +502,10 b' class KeyValueConfigLoader(CommandLineConfigLoader):'
502 502 if '.' not in lhs:
503 503 # probably a mistyped alias, but not technically illegal
504 504 warn.warn("Unrecognized alias: '%s', it will probably have no effect."%lhs)
505 try:
505 506 self._exec_config_str(lhs, rhs)
507 except Exception:
508 raise ArgumentError("Invalid argument: '%s'" % raw)
506 509
507 510 elif flag_pattern.match(raw):
508 511 if item in flags:
General Comments 0
You need to be logged in to leave comments. Login now