##// END OF EJS Templates
Add a docstring to magics to fix the broken "%magic" magic.
gvaroquaux -
Show More
@@ -45,6 +45,8 b' def mk_system_call(system_call_function, command):'
45 45 """
46 46 def my_system_call(args):
47 47 system_call_function("%s %s" % (command, args))
48
49 my_system_call.__doc__ = "Calls %s" % command
48 50 return my_system_call
49 51
50 52 #-------------------------------------------------------------------------------
General Comments 0
You need to be logged in to leave comments. Login now