forgot to change list delimiter in parser

This commit is contained in:
Joey Hess 2019-03-06 11:59:42 -04:00
parent f957f64278
commit b0fe4916b7
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38

View file

@ -51,7 +51,7 @@ parseContentIdentifierList = reverse . catMaybes <$> valueparser []
ifM A8.atEnd
( return (cid:l)
, do
_ <- A8.char ' '
_ <- A8.char ':'
valueparser (cid:l)
)