##// END OF EJS Templates
Programmatically fill up-to-date location of NotebookNode class.
Thomas Kluyver -
Show More
@@ -37,7 +37,7 b' def DocDecorator(f):'
37
37
38 #Set docstring of function
38 #Set docstring of function
39 f.__doc__ = f.__doc__ + """
39 f.__doc__ = f.__doc__ + """
40 nb : :class:`~IPython.nbformat.v3.nbbase.NotebookNode`
40 nb : :class:`~{nbnode_mod}.NotebookNode`
41 The notebook to export.
41 The notebook to export.
42 config : config (optional, keyword arg)
42 config : config (optional, keyword arg)
43 User configuration instance.
43 User configuration instance.
@@ -60,7 +60,7 b' def DocDecorator(f):'
60 Notes
60 Notes
61 -----
61 -----
62 WARNING: API WILL CHANGE IN FUTURE RELEASES OF NBCONVERT
62 WARNING: API WILL CHANGE IN FUTURE RELEASES OF NBCONVERT
63 """
63 """.format(nbnode_mod=NotebookNode.__module__)
64
64
65 @wraps(f)
65 @wraps(f)
66 def decorator(*args, **kwargs):
66 def decorator(*args, **kwargs):
General Comments 0
You need to be logged in to leave comments. Login now