diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2019-06-12 11:34:23 +0900 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2019-07-02 10:08:00 +0900 |
commit | 73e83730607e34d5f89a7166fd1609342d954633 (patch) | |
tree | 663207cd9d60168bc87693ea22119d888cccd3b4 | |
parent | f0190a5dcdc1882e5a058dc7f12bc7ccb166c63d (diff) | |
download | guix-73e83730607e34d5f89a7166fd1609342d954633.tar guix-73e83730607e34d5f89a7166fd1609342d954633.tar.gz |
import: pypi: Fix typo in docstring.
* guix/import/pypi.scm (guess-requirements): Fix typo.
-rw-r--r-- | guix/import/pypi.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/import/pypi.scm b/guix/import/pypi.scm index 7cf1e92101..d861dd960d 100644 --- a/guix/import/pypi.scm +++ b/guix/import/pypi.scm @@ -218,7 +218,7 @@ requirement names." (loop requirements)))))))) (define (guess-requirements source-url wheel-url archive) - "Given SOURCE-URL, WHEEL-URL and a ARCHIVE of the package, return a list + "Given SOURCE-URL, WHEEL-URL and an ARCHIVE of the package, return a list of the required packages specified in the requirements.txt file. ARCHIVE will be extracted in a temporary directory." |