Skip to content
This repository has been archived by the owner on May 5, 2020. It is now read-only.

Commit

Permalink
Fix deprecation warning for JuliaLang/julia#8578
Browse files Browse the repository at this point in the history
  • Loading branch information
simonster committed Oct 15, 2014
1 parent 0dd9903 commit 05e4eae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions juliadoc/jlhelp.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,15 +95,15 @@ def write(self, *ignored):
f = codecs.open(outfilename, 'w', 'utf-8')
try:
f.write('# automatically generated from files in doc/stdlib/ -- do not edit here\n\n' +
'{\n\n')
'Any[\n\n')

for docname in self.status_iterator(
sorted(docnames), 'processing... ', darkgreen, len(docnames)):
doctree = self.env.get_and_resolve_doctree(docname, self)
self.writer.write(doctree, f)
f.write("\n")

f.write('\n}\n')
f.write('\n]\n')
finally:
f.close()
except (IOError, OSError) as err:
Expand Down

0 comments on commit 05e4eae

Please sign in to comment.