##// END OF EJS Templates
Fix locals collisions with shell variables...
linar-jether -
Show More
@@ -149,7 +149,7 b' class ConfigMagics(Magics):'
149 149 # leave quotes on args when splitting, because we want
150 150 # unquoted args to eval in user_ns
151 151 cfg = Config()
152 exec("cfg."+line, locals(), self.shell.user_ns)
152 exec("cfg."+line, self.shell.user_ns, locals())
153 153
154 154 for configurable in configurables:
155 155 try:
General Comments 0
You need to be logged in to leave comments. Login now