~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/knit.py

  • Committer: John Arbash Meinel
  • Date: 2009-11-30 21:21:07 UTC
  • mto: This revision was merged to the branch mainline in revision 4842.
  • Revision ID: john@arbash-meinel.com-20091130212107-2ocawio2fgx1fruo
Fix a small typo

Show diffs side-by-side

added added

removed removed

Lines of Context:
2948
2948
                parents = node_refs[:1]
2949
2949
                # Sometimes these are passed as a list rather than a tuple
2950
2950
                passed = static_tuple.as_tuples(keys[key])
2951
 
                passed_parents = passed([1][:1])
 
2951
                passed_parents = passed[1][:1]
2952
2952
                if (value[0] != keys[key][0][0] or
2953
2953
                    parents != passed_parents):
2954
2954
                    node_refs = static_tuple.as_tuples(node_refs)