diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-04-26 12:48:56 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-04-26 13:31:16 +0200 |
commit | 2b829898c77c4f5655db6f70de2b3a51e8f35947 (patch) | |
tree | 4fe57a5cc3065dda25fd3e3ac950444f01fcedae /gnu/packages | |
parent | 52bdd30407756ca883dc98cc3ed776acd740f14c (diff) | |
download | guix-2b829898c77c4f5655db6f70de2b3a51e8f35947.tar.gz guix-2b829898c77c4f5655db6f70de2b3a51e8f35947.zip |
gnu: python-publicsuffix2: Adjust for Guile 3.0.
* gnu/packages/python-web.scm (python-publicsuffix2): Provide explicit
destination in calls to FORMAT.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python-web.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index cc79c38acf..6b77a9d949 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -2809,7 +2809,7 @@ List.") ;; the unused ‘update_psl’ helper command. (substitute* "setup.py" (("'requests " match) - (format "# ~a" match))) + (format #f "# ~a" match))) #t))) #:tests? #f)) ; the test suite requires network access (home-page "https://github.com/pombredanne/python-publicsuffix2") |