98
98
def parse_ignore_file(f):
99
99
"""Read in all of the lines in the file and turn it into an ignore list"""
101
101
for line in f.read().decode('utf8').split('\n'):
102
102
line = line.rstrip('\r\n')
103
103
if not line or line.startswith('#'):
110
110
"""Get the list of user ignored files, possibly creating it."""
111
111
path = config.user_ignore_config_filename()
115
115
except (IOError, OSError), e: