Commit 116c1209 authored by bescoto's avatar bescoto

Fixed typo in parsing error report


git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup@522 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
parent e5d6d8b7
......@@ -133,7 +133,8 @@ def Record2RORP(record_string):
elif field == "Uid": data_dict['uid'] = int(data)
elif field == "Gid": data_dict['gid'] = int(data)
elif field == "Permissions": data_dict['perms'] = int(data)
else: raise ParsingError("Unknown field in line '%s'" % line)
else: raise ParsingError("Unknown field in line '%s %s'" %
(field, data))
return rpath.RORPath(index, data_dict)
chars_to_quote = re.compile("\\n|\\\\")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment