diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-02-22 23:33:47 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-02-22 23:42:08 +0100 |
commit | ce2ba3431a71effa2f9f9f888f0e8ad9e670cb72 (patch) | |
tree | 31fb1e6e54dc380e8290d208a2cc0ae9c726748f | |
parent | d8c80c671bb7e836f464d159aede6bc0ca86ab36 (diff) |
describe: Fix typo in 'manifest-entry-with-provenance'.
* guix/describe.scm (manifest-entry-with-provenance): Fix first argument
to 'assq'.
-rw-r--r-- | guix/describe.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/describe.scm b/guix/describe.scm index 6a31c707f0..03569b1db4 100644 --- a/guix/describe.scm +++ b/guix/describe.scm @@ -182,7 +182,7 @@ property of manifest entries, or #f if it could not be determined." "Return ENTRY with an additional 'provenance' property if it's not already there." (let ((properties (manifest-entry-properties entry))) - (if (assq 'properties properties) + (if (assq 'provenance properties) entry (let ((item (manifest-entry-item entry))) (manifest-entry |