Skip to content

Commit

Permalink
revert all recent changes
Browse files Browse the repository at this point in the history
  • Loading branch information
besser82 committed Mar 8, 2016
1 parent bc0a270 commit f588ba4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/.doxy2swig.py
Expand Up @@ -386,9 +386,9 @@ def do_doxygenindex(self, node):
def write(self, fname):
o = my_open_write(fname)
if self.multi:
o.write(unicode("".join(self.pieces)).encode('utf-8'))
o.write("".join(self.pieces))
else:
o.write(unicode("".join(self.clean_pieces(self.pieces))).encode('utf-8'))
o.write("".join(self.clean_pieces(self.pieces)))
o.close()

def clean_pieces(self, pieces):
Expand Down

0 comments on commit f588ba4

Please sign in to comment.