Skip to content

Commit 4990135

Browse files
committed
Add Ian to list of maintainers.
1 parent 4c5bf00 commit 4990135

4 files changed

Lines changed: 13 additions & 5 deletions

File tree

CHANGES.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ Changelog
55
1.x (unreleased)
66
----------------
77

8+
News:
9+
10+
* Ian Lee <ianlee1521@gmail.com> joined the project as a maintainer.
11+
12+
Bug fixes:
13+
814
* Report E731 for lambda assignment. (Issue #277)
915

1016
* Report E704 for one-liner def instead of E701.

docs/conf.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@
4545

4646
# General information about the project.
4747
project = u'pep8'
48-
copyright = u'2012-2013, Florent Xicluna'
48+
authors = u'Johann C. Rocholl, Florent Xicluna, Ian Lee'
49+
copyright = u'2006-2014, %s' % (authors)
4950

5051
# The version info for the project you're documenting, acts as replacement for
5152
# |version| and |release|, also used in various other places throughout the
@@ -192,7 +193,7 @@
192193
# author, documentclass [howto/manual]).
193194
latex_documents = [
194195
('index', 'pep8.tex', u'pep8 documentation',
195-
u'Florent Xicluna', 'manual'),
196+
authors, 'manual'),
196197
]
197198

198199
# The name of an image file (relative to this directory) to place at the top of
@@ -222,7 +223,7 @@
222223
# (source start file, name, description, authors, manual section).
223224
man_pages = [
224225
('index', 'pep8', u'pep8 documentation',
225-
[u'Florent Xicluna'], 1)
226+
[authors], 1)
226227
]
227228

228229
# If true, show URL addresses after external links.
@@ -235,7 +236,7 @@
235236
# (source start file, target name, title, author,
236237
# dir menu entry, description, category)
237238
texinfo_documents = [
238-
('index', 'pep8', u'pep8 documentation', u'Florent Xicluna',
239+
('index', 'pep8', u'pep8 documentation', authors,
239240
'pep8', 'One line description of project.',
240241
'Miscellaneous'),
241242
]

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Credits
3737

3838
Created by Johann C. Rocholl.
3939

40-
Maintained by Florent Xicluna.
40+
Maintained by Florent Xicluna and Ian Lee.
4141

4242

4343
.. _license:

pep8.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# pep8.py - Check Python source code formatting, according to PEP 8
33
# Copyright (C) 2006-2009 Johann C. Rocholl <johann@rocholl.net>
44
# Copyright (C) 2009-2014 Florent Xicluna <florent.xicluna@gmail.com>
5+
# Copyright (C) 2014 Ian Lee <ianlee1521@gmail.com>
56
#
67
# Permission is hereby granted, free of charge, to any person
78
# obtaining a copy of this software and associated documentation files

0 commit comments

Comments
 (0)