mirror of https://github.com/scrapy/scrapy.git
Settings priorities dictionary
This commit is contained in:
parent
1276b12c25
commit
384efce0a6
|
|
@ -2,6 +2,14 @@ import json
|
|||
from . import default_settings
|
||||
|
||||
|
||||
SETTINGS_PRIORITIES = {
|
||||
'default': 0,
|
||||
'command': 10,
|
||||
'project': 20,
|
||||
'cmdline': 40,
|
||||
}
|
||||
|
||||
|
||||
class SettingsAttribute(object):
|
||||
|
||||
"""Class for storing data related to settings attributes.
|
||||
|
|
|
|||
Loading…
Reference in New Issue