Skip to content

Commit 78225f1

Browse files
committed
Fix wrong variable usage
* jupyter-base.el (jupyter-format-time-low-res): Do it.
1 parent 450165f commit 78225f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter-base.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@ TIME is assumed to have the same form as the return value of
751751
(format "%s%d hours%s"
752752
(if past "" "in ")
753753
hours
754-
(if hours " ago" ""))))
754+
(if past " ago" ""))))
755755
((not (zerop minutes))
756756
(if (= minutes 1)
757757
(if past "a minute ago"

0 commit comments

Comments
 (0)