~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: 2008-01-03 17:08:05 UTC
  • mfrom: (3144.4.2 resolve-parent-kind)
  • Revision ID: pqm@pqm.ubuntu.com-20080103170805-t22jan69n4n5kkub
Handle conflicts in parent file kind gracefully (abentley)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005 Aaron Bentley, Canonical Ltd
 
1
# Copyright (C) 2005, 2007 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
515
515
             "%(action)s."
516
516
 
517
517
 
 
518
class NonDirectoryParent(HandledConflict):
 
519
    """An attempt to add files to a directory that is not a director or
 
520
    an attempt to change the kind of a directory with files.
 
521
    """
 
522
 
 
523
    typestring = 'non-directory parent'
 
524
 
 
525
    format = "Conflict: %(path)s is not a directory, but has files in it."\
 
526
             "  %(action)s."
 
527
 
518
528
ctype = {}
519
529
 
520
530
 
527
537
 
528
538
register_types(ContentsConflict, TextConflict, PathConflict, DuplicateID,
529
539
               DuplicateEntry, ParentLoop, UnversionedParent, MissingParent,
530
 
               DeletingParent,)
 
540
               DeletingParent, NonDirectoryParent)