~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/add.py

  • Committer: Aaron Bentley
  • Date: 2005-10-04 04:32:32 UTC
  • mfrom: (1185.12.6)
  • mto: (1185.12.13)
  • mto: This revision was merged to the branch mainline in revision 1419.
  • Revision ID: aaron.bentley@utoronto.ca-20051004043231-40302a149769263b
merged my own changes

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: