rust/hg-core/src/revset.rs
changeset 46725 df247f58ecee
parent 46433 4b381dbbf8b7
child 46821 e8ae91b1a63d
--- a/rust/hg-core/src/revset.rs	Wed Mar 03 18:00:54 2021 +0100
+++ b/rust/hg-core/src/revset.rs	Tue Mar 02 23:18:23 2021 +0100
@@ -2,6 +2,7 @@
 //!
 //! <https://www.mercurial-scm.org/repo/hg/help/revsets>
 
+use crate::errors::HgError;
 use crate::repo::Repo;
 use crate::revlog::changelog::Changelog;
 use crate::revlog::revlog::{Revlog, RevlogError};
@@ -28,7 +29,10 @@
 
     // TODO: support for the rest of the language here.
 
-    Err(RevlogError::InvalidRevision)
+    Err(
+        HgError::unsupported(format!("cannot parse revset '{}'", input))
+            .into(),
+    )
 }
 
 /// Resolve the small subset of the language suitable for revlogs other than