해결법 module 'datetime' has no attribute 'strftime'
정말 간단한 time format 을 출력하는 코드인데 너무나도 파이썬은 신기한듯 ㅎ 아무튼 아래와 같은 오류가 발생을 해서 참 난감하고 있는 참이었는데 해결을 해서 이렇게 공유를 한다. 오류 내용 Exception has occurred: AttributeError module 'datetime' has no attribute 'strftime' 나의 코드 def Logger(self,text): sdate = datetime.strftime(datetime.date.today, '%Y-%m-%d %H:%M:%S') sText = f'{sdate} : {text}' server.slackClient.post_message_to_slack(sText) print(sText) 여기서 문제가 되는 코드는 s..
2022.02.05