##// END OF EJS Templates
minor fix to argv support
fperez -
Show More
@@ -51,7 +51,7 b' class Demo:'
51 51 self.mark_silent = mark_silent
52 52 self.re_silent = re.compile(r'^\s*%s\s*$' % mark_silent,re.MULTILINE)
53 53 self.auto = auto
54 self.sys_argv = shlex_split(arg_str)
54 self.sys_argv = [fname]+shlex_split(arg_str)
55 55
56 56 # get a few things from ipython. While it's a bit ugly design-wise,
57 57 # it ensures that things like color scheme and the like are always in
General Comments 0
You need to be logged in to leave comments. Login now