~vorlon/ubuntu/saucy/gourmet/trunk

« back to all changes in this revision

Viewing changes to src/lib/shopping.py

  • Committer: Bazaar Package Importer
  • Author(s): Rolf Leggewie
  • Date: 2009-02-10 17:34:51 UTC
  • mfrom: (2.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090210173451-bt0a6j0ut71oxqes
Tags: 0.14.5-1
* new upstream release
* 0.14.5 no longer conflicts with newer versions of python-pysqlite and
  python-sqlalchemy.  Relax dependencies accordingly.
* all patches have been pushed upstream, so they can be dropped in Debian.
  The manpage was forgotten when preparing the tarball upstream, so it
  will stick around for another release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
197
197
        """Put two ingredients in order"""
198
198
        inga = inga[0]
199
199
        ingb = ingb[0]
200
 
        if self.ingorder_dic.has_key(inga) and self.ingorder_dic.has_key(ingb):
 
200
        if False and self.ingorder_dic.has_key(inga) and self.ingorder_dic.has_key(ingb):
201
201
            # if both ings have known positions, we use them to compare
202
202
            inga = self.ingorder_dic[inga]
203
203
            ingb = self.ingorder_dic[ingb]