Remove an unnecessary elif.

This commit is contained in:
Sean Hammond 2010-02-08 09:37:31 -05:00
parent ff00673d19
commit 3af41d5a93
1 changed files with 0 additions and 3 deletions

View File

@ -122,9 +122,6 @@ def get_target_paths(to_dir):
if filename.endswith('~'):
print 'Skipping %s' % filename
continue
elif filename in ['.gitignore','.git','README','makelinks']:
print 'Skipping %s' % filename
continue
elif (not os.path.isfile(path)) and (not os.path.isdir(path)):
print 'Skipping %s (not a file or directory)' % filename
continue