diff options
Diffstat (limited to 'Command/View.hs')
-rw-r--r-- | Command/View.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Command/View.hs b/Command/View.hs index e5182e852..932bc2d00 100644 --- a/Command/View.hs +++ b/Command/View.hs @@ -49,14 +49,14 @@ paramView = paramPair (paramRepeating "TAG") (paramRepeating "FIELD=VALUE") {- Parse field=value - - Note that the field may not be a legal metadata field name, - - but it's let through anywa (using MetaField rather than mkMetaField). + - but it's let through anyway. - This is useful when matching on directory names with spaces, - which are not legal MetaFields. -} parseViewParam :: String -> (MetaField, String) parseViewParam s = case separate (== '=') s of (tag, []) -> (tagMetaField, tag) - (field, wanted) -> (MetaField field, wanted) + (field, wanted) -> (mkMetaFieldUnchecked field, wanted) mkView :: [String] -> Annex View mkView params = do |