comparison hgext/largefiles/reposetup.py @ 24180:d8e0c591781c

spelling: fixes from proofreading of spell checker issues
author Mads Kiilerich <madski@unity3d.com>
date Sun, 18 Jan 2015 02:38:57 +0100
parents bb11081562d7
children 2720f967a7b1
comparison
equal deleted inserted replaced
24179:14d647d25c70 24180:d8e0c591781c
327 for lf in lfiles: 327 for lf in lfiles:
328 if self.dirstate.normalize(lf).startswith(d): 328 if self.dirstate.normalize(lf).startswith(d):
329 actualfiles.append(lf) 329 actualfiles.append(lf)
330 if not matcheddir: 330 if not matcheddir:
331 # There may still be normal files in the dir, so 331 # There may still be normal files in the dir, so
332 # make sure _a_ directory is in the list, which 332 # add a directory to the list, which
333 # forces status/dirstate to walk all files and 333 # forces status/dirstate to walk all files and
334 # call the match function on the matcher, even 334 # call the match function on the matcher, even
335 # on case sensitive filesytems. 335 # on case sensitive filesystems.
336 actualfiles.append('.') 336 actualfiles.append('.')
337 matcheddir = True 337 matcheddir = True
338 # Nothing in dir, so readd it 338 # Nothing in dir, so readd it
339 # and let commit reject it 339 # and let commit reject it
340 if not matcheddir: 340 if not matcheddir: