From: Tomi Ollila Date: Tue, 18 Feb 2014 18:34:52 +0000 (+0200) Subject: nmbug-status: replace __values__() with values() in OrderedDict stub X-Git-Tag: 0.18_rc0~137 X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=18d71908b2d2d5843d38ec94cf2daf5f1e8ecd29;hp=18d71908b2d2d5843d38ec94cf2daf5f1e8ecd29;p=notmuch nmbug-status: replace __values__() with values() in OrderedDict stub 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. ---