~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/_dirstate_helpers_py.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-10-09 08:08:20 UTC
  • mfrom: (2872.4.11 146176-dirstate)
  • Revision ID: pqm@pqm.ubuntu.com-20071009080820-civ61gexahohpats
Fix incorrect comparison in Dirstate.set_state_from_inventory, and bug #146176

Show diffs side-by-side

added added

removed removed

Lines of Context:
144
144
 
145
145
    :param path1: first path
146
146
    :param path2: second path
147
 
    :return: positive number if ``path1`` comes first,
 
147
    :return: negative number if ``path1`` comes first,
148
148
        0 if paths are equal,
149
 
        and negative number if ``path2`` sorts first
 
149
        and positive number if ``path2`` sorts first
150
150
    """
151
151
    if not isinstance(path1, str):
152
152
        raise TypeError("'path1' must be a plain string, not %s: %r"
166
166
 
167
167
    :param path1: first path
168
168
    :param path2: the second path
169
 
    :return: positive number if ``path1`` comes first,
 
169
    :return: negative number if ``path1`` comes first,
170
170
        0 if paths are equal
171
 
        and a negative number if ``path2`` sorts first
 
171
        and a positive number if ``path2`` sorts first
172
172
    """
173
173
    if not isinstance(path1, str):
174
174
        raise TypeError("'path1' must be a plain string, not %s: %r"