Skip to content

Commit

Permalink
And by the way, show useflags sorted :)
Browse files Browse the repository at this point in the history
  • Loading branch information
apinsard committed Jan 12, 2017
1 parent 5fd21c8 commit 209619d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chuse
Original file line number Diff line number Diff line change
Expand Up @@ -460,8 +460,8 @@ def main():
parts = line.split(' ')
line = ' '.join(
[_green(parts[0], True)] +
[_red(p, True) for p in parts[1:] if p[0] != '-'] +
[_blue(p, True) for p in parts[1:] if p[0] == '-']
sorted(_red(p, True) for p in parts[1:] if p[0] != '-') +
sorted(_blue(p, True) for p in parts[1:] if p[0] == '-')
)
output(line)
except FileNotFoundError:
Expand Down

0 comments on commit 209619d

Please sign in to comment.