From: Siraaj Khandkar Date: Fri, 26 Nov 2021 20:25:13 +0000 (-0500) Subject: Update indentation X-Git-Tag: 0.26.1~1 X-Git-Url: https://git.xandkar.net/?p=tt.git;a=commitdiff_plain;h=68bbd2e9f42d401e184ecf35106d833a6c4338db Update indentation --- diff --git a/tt.rkt b/tt.rkt index a375c69..f4c1b85 100644 --- a/tt.rkt +++ b/tt.rkt @@ -468,22 +468,22 @@ (log-debug "Last-Modified <= current skipping the rest of ~v" u-str) #t)))) (if (not cached?) - (begin - (log-debug - "Downloading the rest of ~v. ETag: ~a, Last-Modified: ~v" - u-str etag lmod) - (make-parent-directory* cached-object-path) - (make-parent-directory* cached-etag-path) - (make-parent-directory* cached-lmod-path) - (call-with-output-file cached-object-path - (curry copy-port body-input) - #:exists 'replace) - (when etag - (display-to-file etag cached-etag-path #:exists 'replace)) - (when lmod - (display-to-file lmod cached-lmod-path #:exists 'replace)) - 'downloaded-new) - 'skipped-cached)) + (begin + (log-debug + "Downloading the rest of ~v. ETag: ~a, Last-Modified: ~v" + u-str etag lmod) + (make-parent-directory* cached-object-path) + (make-parent-directory* cached-etag-path) + (make-parent-directory* cached-lmod-path) + (call-with-output-file cached-object-path + (curry copy-port body-input) + #:exists 'replace) + (when etag + (display-to-file etag cached-etag-path #:exists 'replace)) + (when lmod + (display-to-file lmod cached-lmod-path #:exists 'replace)) + 'downloaded-new) + 'skipped-cached)) (: uri-download (-> Positive-Float Url