~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/add.py

  • Committer: Robert Collins
  • Date: 2005-10-03 01:15:02 UTC
  • mfrom: (1092.2.28)
  • Revision ID: robertc@robertcollins.net-20051003011502-f579a509a136b774
mergeĀ fromĀ baz2bzr

Show diffs side-by-side

added added

removed removed

Lines of Context:
95
95
 
96
96
        kind = bzrlib.osutils.file_kind(af)
97
97
 
98
 
        if kind != 'file' and kind != 'directory':
 
98
        if kind != 'file' and kind != 'directory' and kind != 'symlink':
99
99
            if f in user_list:
100
100
                raise BadFileKindError("cannot add %s of type %s" % (f, kind))
101
101
            else: