~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/conflicts.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-01-04 17:56:49 UTC
  • mfrom: (4929.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20100104175649-lb0fpgzbuyu91ltv
(vila) Cleanup conflicts docs

Show diffs side-by-side

added added

removed removed

Lines of Context:
148
148
 
149
149
 
150
150
def restore(filename):
151
 
    """\
152
 
    Restore a conflicted file to the state it was in before merging.
153
 
    Only text restoration supported at present.
 
151
    """Restore a conflicted file to the state it was in before merging.
 
152
 
 
153
    Only text restoration is supported at present.
154
154
    """
155
155
    conflicted = False
156
156
    try:
478
478
 
479
479
 
480
480
class UnversionedParent(HandledConflict):
481
 
    """An attempt to version an file whose parent directory is not versioned.
 
481
    """An attempt to version a file whose parent directory is not versioned.
482
482
    Typically, the result of a merge where one tree unversioned the directory
483
483
    and the other added a versioned file to it.
484
484
    """