Fix fish_config error with python3

Closes #1253.
This commit is contained in:
David Xia 2014-07-22 23:50:24 -04:00 committed by David Adam
parent d07ea3b66a
commit adabc2d7a0

View file

@ -1,7 +1,9 @@
#!/usr/bin/env python
# Whether we're Python 2
import sys, os
import sys
import os
import operator
IS_PY2 = sys.version_info[0] == 2
if IS_PY2:
@ -487,7 +489,7 @@ class FishConfigHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
result.append([color_name, color_desc, parse_color('')])
# Sort our result (by their keys)
result.sort()
result.sort(key=operator.itemgetter('name'))
return result