]> git.cworth.org Git - notmuch/commitdiff
nmbug-status: replace __values__() with values() in OrderedDict stub
authorTomi Ollila <tomi.ollila@iki.fi>
Tue, 18 Feb 2014 18:34:52 +0000 (20:34 +0200)
committerDavid Bremner <david@tethera.net>
Sat, 22 Feb 2014 01:12:45 +0000 (21:12 -0400)
Python dict() object does not have __values__() function which
OrderedDict().values() (the stub provided in nmbug-status) could call
to provide ordered list of values. By renaming this thinko to
values() will make our stub work as expected -- dict items listed out
in order those were added to the dictionary.


No differences found