Skip to content

How do I turn a datetime.datetime into a BeautifulDate? #25

Answered by kuzmoyev
N-Demir asked this question in Q&A
Discussion options

You must be logged in to vote

BeautifulDate can only represent "date" object, not datetime. (E.x. try D.today(), that'll give you BeautifulDate).

But your issue is that + 1 * day sets the day to 1.
I assume you wanted to add 1 day, so you want to use + 1 * days (note the plural, check the note in the docs).

I understand the confusion for this particular case when you're adding 1 days :)

Replies: 1 comment 3 replies

Comment options

You must be logged in to vote
3 replies
@kuzmoyev
Comment options

@N-Demir
Comment options

@kuzmoyev
Comment options

Answer selected by N-Demir
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants