ValueError: Invalid format string
Logged from file core.py, line 85
Traceback (most recent call last):
File "c:\Python27\lib\logginginit.py", line 859, in emit
msg = self.format(record)
File "c:\Python27\lib\logginginit.py", line 732, in format
return fmt.format(record)
File "c:\Python27\lib\logginginit.py", line 473, in format
record.asctime = self.formatTime(record, self.datefmt)
File "c:\Python27\lib\logginginit.py", line 431, in formatTime
s = time.strftime(datefmt, ct)
I tried to execute the below command on windows and found that this is due to the python time formatting in windows (particularly %T)
reference: http://stackoverflow.com/questions/10807164/python-time-formatting-different-in-windows
C:\Users\sp>graffiti-monkey --region us-east-1 -c C:\Users\sp\De sktop\test.yml
ValueError: Invalid format string Logged from file core.py, line 85 Traceback (most recent call last): File "c:\Python27\lib\logginginit.py", line 859, in emit msg = self.format(record) File "c:\Python27\lib\logginginit.py", line 732, in format return fmt.format(record) File "c:\Python27\lib\logginginit.py", line 473, in format record.asctime = self.formatTime(record, self.datefmt) File "c:\Python27\lib\logginginit.py", line 431, in formatTime s = time.strftime(datefmt, ct)