Skip to content

Commit

Permalink
Too tired
Browse files Browse the repository at this point in the history
  • Loading branch information
dsblank committed Aug 7, 2017
1 parent bbc08ff commit 442c846
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conx/layers.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ def process_class_docstring(docstring):
if type(obj) == type and issubclass(obj, (keras.engine.Layer, )):
new_name = "%sLayer" % name
try:
docstring_md = ' **%sLayer**\n\n' % (new_name,)
docstring_md = ' **%s**\n\n' % (new_name,)
docstring_md += obj.__doc__
docstring = pypandoc.convert(process_class_docstring(docstring_md), "rst", "markdown_github")
except:
Expand Down

0 comments on commit 442c846

Please sign in to comment.