diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-06-10 22:12:28 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-06-10 22:42:52 +0200 |
commit | 416a7c69f1d788670f0c4a7ffaed3e032eadc91d (patch) | |
tree | 1d1fd0103a7b602084e1a297d0c19c99429c46fa | |
parent | 883dc11c3ab9d3e17fa1332bf24ad1de4ea828ac (diff) | |
download | patches-416a7c69f1d788670f0c4a7ffaed3e032eadc91d.tar patches-416a7c69f1d788670f0c4a7ffaed3e032eadc91d.tar.gz |
ssh: Add missing import.
* guix/ssh.scm: Use (ice-9 format).
-rw-r--r-- | guix/ssh.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/guix/ssh.scm b/guix/ssh.scm index 2b286a67b2..9b9baf54ea 100644 --- a/guix/ssh.scm +++ b/guix/ssh.scm @@ -33,6 +33,7 @@ #:use-module (srfi srfi-34) #:use-module (srfi srfi-35) #:use-module (ice-9 match) + #:use-module (ice-9 format) #:use-module (ice-9 binary-ports) #:export (open-ssh-session remote-inferior |