Skip to content

Commit

Permalink
pass args to MI
Browse files Browse the repository at this point in the history
  • Loading branch information
jreback committed Mar 15, 2017
1 parent 61301b4 commit 615a99f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pandas/indexes/multi.py
Original file line number Diff line number Diff line change
Expand Up @@ -1202,7 +1202,9 @@ def _reconstruct_as_sorted(self):
new_levels.append(lev)
new_labels.append(lab)

return MultiIndex(new_levels, new_labels, names=self.names)
return MultiIndex(new_levels, new_labels,
names=self.names, sortorder=self.sortorder,
verify_integrity=False)

@property
def nlevels(self):
Expand Down

0 comments on commit 615a99f

Please sign in to comment.