Skip to content
Snippets Groups Projects
Commit 0f157378 authored by Shachar Ohana's avatar Shachar Ohana
Browse files

#250 - Review fixes

parent e13e3fa3
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -28,6 +28,7 @@ setup(
install_requires=[
'snowballstemmer',
'six',
'configparser;python_version<"3.3"',
],
entry_points={
'console_scripts': [
Loading
Loading
Loading
Loading
@@ -298,7 +298,7 @@ class ConfigurationParser(object):
Returns (options, should_inherit).
 
"""
parser = RawConfigParser()
parser = RawConfigParser(inline_comment_prefixes=('#', ';'))
options = None
should_inherit = True
 
Loading
Loading
Loading
Loading
@@ -289,7 +289,7 @@ def test_multiple_lined_config_file(env):
 
select_string = ('D100,\n'
' #D103,\n'
' D204, D300')
' D204, D300 # Just remember - don\'t check D103!')
env.write_config(select=select_string)
 
out, err, code = env.invoke()
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment