Skip to content

Commit 2adce6a

Browse files
authored
fix --list-frames-v2.2 option
Closes: #669
1 parent 9e3ff54 commit 2adce6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mutagen/_tools/mid3v2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def list_frames(option, opt, value, parser):
6161

6262
def list_frames_2_2(option, opt, value, parser):
6363
items = mutagen.id3.Frames_2_2.items()
64-
items.sort()
64+
sorted(items)
6565
for name, frame in items:
6666
print(u" --%s %s" % (name, frame.__doc__.split("\n")[0]))
6767
raise SystemExit

0 commit comments

Comments
 (0)