Skip to content

Commit

Permalink
Merge pull request #27 from pfernique/master
Browse files Browse the repository at this point in the history
Sort lexico
  • Loading branch information
pfernique committed Aug 10, 2016
2 parents 625da73 + dbe4737 commit 0c4f15d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/py/autowig/boost_python_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -931,7 +931,7 @@ def exports(self):
if not hasattr(self, '_exports'):
return []
else:
return [export for export in sorted([self._asg[export] for export in self._exports], key = attrgetter('depth'))]
return [export for export in sorted(sorted([self._asg[export] for export in self._exports], key = attrgetter('globalname')), key = attrgetter('depth'))]

#@property
def get_dependencies(self):
Expand Down

0 comments on commit 0c4f15d

Please sign in to comment.