Skip to content

Commit ddb2900

Browse files
committed
Add 2018 to copyright
1 parent d3d1f46 commit ddb2900

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

AdvancedHTMLParser/Formatter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015, 2017 Tim Savannah under LGPLv3.
1+
# Copyright (c) 2015, 2017, 2018 Tim Savannah under LGPLv3.
22
# See LICENSE (https://gnu.org/licenses/lgpl-3.0.txt) for more information.
33
# HTML formatting (HTML->XHTML conversion as well)
44

AdvancedHTMLParser/Parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# Copyright (c) 2015, 2016, 2017 Tim Savannah under LGPLv3. See LICENSE (https://gnu.org/licenses/lgpl-3.0.txt) for more information.
2+
# Copyright (c) 2015, 2016, 2017, 2018 Tim Savannah under LGPLv3. See LICENSE (https://gnu.org/licenses/lgpl-3.0.txt) for more information.
33
#
44
# Parser implementation
55

AdvancedHTMLParser/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# Copyright (c) 2015, 2016, 2017 Tim Savannah All Rights Rserved under LGPLv3. See LICENSE (https://gnu.org/licenses/lgpl-3.0.txt) for more information.
2+
# Copyright (c) 2015, 2016, 2017, 2018 Tim Savannah All Rights Rserved under LGPLv3. See LICENSE (https://gnu.org/licenses/lgpl-3.0.txt) for more information.
33
#
44
# In general below, all "tag names" (body, div, etc) should be lowercase. The parser will lowercase internally. All attribute names (like `id` in id="123") provided to search functions should be lowercase. Values are not lowercase. This is because doing tons of searches, lowercasing every search can quickly build up. Lowercase it once in your code, not every time you call a function.
55

0 commit comments

Comments
 (0)