diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-05-10 15:25:07 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-05-10 22:05:21 +0200 |
commit | 30d2397f73d6fa9e77eed70ec6df8afd3b9f5f5e (patch) | |
tree | 7e1b8f572aac629d2697b54517cfe6e25dccfbda /guix | |
parent | af8f8281db99fb4cde06f24a84caea32b0821c79 (diff) | |
download | gnu-guix-30d2397f73d6fa9e77eed70ec6df8afd3b9f5f5e.tar gnu-guix-30d2397f73d6fa9e77eed70ec6df8afd3b9f5f5e.tar.gz |
ui: 'string->duration' correctly handles hours.
* guix/ui.scm (string->duration): Add missing '=>' for hours.
* tests/ui.scm ("duration, 2 hours"): New test.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/ui.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/guix/ui.scm b/guix/ui.scm index e551d48c33..e7cb40927b 100644 --- a/guix/ui.scm +++ b/guix/ui.scm @@ -1008,6 +1008,7 @@ following patterns: \"1d\", \"1w\", \"1m\"." (make-time time-duration 0 (string->number (match:substring match 1))))) ((string-match "^([0-9]+)h$" str) + => (lambda (match) (hours->duration 1 match))) ((string-match "^([0-9]+)d$" str) |