Skip to content
Snippets Groups Projects
  • Guido Trotter's avatar
    check-news: fix behavior on invalid date line · 9495d2f2
    Guido Trotter authored
    
    Before:
    $ ./autotools/check-news < ./NEWS
    Traceback (most recent call last):
      File "./autotools/check-news", line 150, in <module>
        main()
      File "./autotools/check-news", line 120, in main
        parsed_ts = time.mktime(time.strptime(m.group("date"), "%d %b %Y"))
    AttributeError: 'NoneType' object has no attribute 'group'
    
    After:
    $ ./autotools/check-news < ./NEWS
    Line 8: Invalid release line
    
    This happened because the error function just updates an error log,
    rather than bailing out immediately.
    
    Signed-off-by: default avatarGuido Trotter <ultrotter@google.com>
    Reviewed-by: default avatarMichele Tartara <mtartara@google.com>
    9495d2f2
check-news 3.96 KiB