about summary refs log tree commit diff
path: root/src/libexpr/primops/fetchMercurial.cc
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2017-11-02T22·37+0100
committerGitHub <noreply@github.com>2017-11-02T22·37+0100
commit5ab37f0e44d6e5a4c7fb55d9974bc7e225eed200 (patch)
treeb2c8312c38b48d563c05e337faa9e84daff3d892 /src/libexpr/primops/fetchMercurial.cc
parentac4a1ef0c1303352d80fb3b97a1fc5fffa00d518 (diff)
fetchMercurial: fix error message
Diffstat (limited to '')
-rw-r--r--src/libexpr/primops/fetchMercurial.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/primops/fetchMercurial.cc b/src/libexpr/primops/fetchMercurial.cc
index e68d1a2a55..f48d003fcd 100644
--- a/src/libexpr/primops/fetchMercurial.cc
+++ b/src/libexpr/primops/fetchMercurial.cc
@@ -167,7 +167,7 @@ static void prim_fetchMercurial(EvalState & state, const Pos & pos, Value * * ar
             else if (n == "name")
                 name = state.forceStringNoCtx(*attr.value, *attr.pos);
             else
-                throw EvalError("unsupported argument '%s' to 'fetchGit', at %s", attr.name, *attr.pos);
+                throw EvalError("unsupported argument '%s' to 'fetchMercurial', at %s", attr.name, *attr.pos);
         }
 
         if (url.empty())