File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1
1
Changes
2
2
=======
3
3
4
+ 0.13.1 - 2022-07-15
5
+ -------------------
6
+
7
+ * Fix warnings related to deprecated options syntax.
8
+
4
9
0.13.0 - 2022-06-22
5
10
-------------------
6
11
Original file line number Diff line number Diff line change 13
13
except ImportError :
14
14
from flake8 .util import ast , iter_child_nodes
15
15
16
- __version__ = '0.13.0 '
16
+ __version__ = '0.13.1 '
17
17
18
18
PYTHON_VERSION = sys .version_info [:3 ]
19
19
@@ -133,7 +133,7 @@ def add_options(cls, parser):
133
133
parse_from_config = True ,
134
134
comma_separated_list = True ,
135
135
help = 'List of names or glob patterns the pep8-naming '
136
- 'plugin should ignore. (Defaults to %default)' ,
136
+ 'plugin should ignore. (Defaults to %( default)s )' ,
137
137
)
138
138
parser .add_option (
139
139
'--classmethod-decorators' ,
@@ -142,7 +142,7 @@ def add_options(cls, parser):
142
142
comma_separated_list = True ,
143
143
help = 'List of method decorators pep8-naming plugin '
144
144
'should consider classmethods (Defaults to '
145
- '%default)' ,
145
+ '%( default)s )' ,
146
146
)
147
147
parser .add_option (
148
148
'--staticmethod-decorators' ,
@@ -151,7 +151,7 @@ def add_options(cls, parser):
151
151
comma_separated_list = True ,
152
152
help = 'List of method decorators pep8-naming plugin '
153
153
'should consider staticmethods (Defaults to '
154
- '%default)' ,
154
+ '%( default)s )' ,
155
155
)
156
156
parser .extend_default_ignore (['N818' ])
157
157
You can’t perform that action at this time.
0 commit comments