View Single Post
Old 07-04-2015, 03:17 PM   #17
rubeus
Banned
rubeus ought to be getting tired of karma fortunes by now.rubeus ought to be getting tired of karma fortunes by now.rubeus ought to be getting tired of karma fortunes by now.rubeus ought to be getting tired of karma fortunes by now.rubeus ought to be getting tired of karma fortunes by now.rubeus ought to be getting tired of karma fortunes by now.rubeus ought to be getting tired of karma fortunes by now.rubeus ought to be getting tired of karma fortunes by now.rubeus ought to be getting tired of karma fortunes by now.rubeus ought to be getting tired of karma fortunes by now.rubeus ought to be getting tired of karma fortunes by now.
 
Posts: 272
Karma: 1224588
Join Date: Sep 2014
Device: Sony PRS 650
Is there a way to have the dropdown box showing sorted img-keys?

Ok that was easy

replace
Code:
        image['values'] = img_dic.keys()
with
Code:
        image['values'] = sorted(img_dic.keys())
Why is

Code:
        image['values'] = img_dic.keys().sort()
exporting an empty list?

Last edited by rubeus; 07-04-2015 at 03:36 PM.
rubeus is offline   Reply With Quote