Fix flake8 and update CHANGES for #2440

This commit is contained in:
shimizukawa 2016-04-12 21:57:01 +09:00
parent b8aca81fbc
commit ab02e2a06f
2 changed files with 2 additions and 1 deletions

View File

@ -33,6 +33,7 @@ Bugs fixed
* #2396: Fix "too many values to unpack" in genindex-single * #2396: Fix "too many values to unpack" in genindex-single
* #2405: Fix numref link in PDF jumps to the wrong location * #2405: Fix numref link in PDF jumps to the wrong location
* #2414: Fix missing number in PDF hyperlinks to code listings * #2414: Fix missing number in PDF hyperlinks to code listings
* #2440: Fix wrong import for gmtime. Thanks to Uwe L. Korn.
Release 1.4 (released Mar 28, 2016) Release 1.4 (released Mar 28, 2016)

View File

@ -14,7 +14,7 @@ import os
import re import re
import warnings import warnings
from os import path from os import path
from time import time, gmtime from time import gmtime
from datetime import datetime from datetime import datetime
from collections import namedtuple from collections import namedtuple