Skip to content

Commit

Permalink
Remove carriage return in count_the_days
Browse files Browse the repository at this point in the history
  • Loading branch information
Petro31 committed Nov 17, 2023
1 parent 7f70ee8 commit 8b3e6f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easy_time.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -1498,7 +1498,7 @@
{%- macro count_the_days(input, attr, utc=False) %}
{%- set input = _to_datetime(input, attr, utc) | as_datetime %}
{%- set midnight = today_at() %}
{{ (input - midnight).days }}
{{- (input - midnight).days }}
{%- endmacro %}

{%- macro speak_the_days(input, attr, language=default_language, utc=False) %}
Expand Down

0 comments on commit 8b3e6f5

Please sign in to comment.