listers: Align config filename with production
This commit is contained in:
parent
8ffd8dadef
commit
dac7777cd6
2 changed files with 2 additions and 2 deletions
|
@ -234,7 +234,7 @@ class SWHListerBase(abc.ABC, config.SWHConfig):
|
|||
|
||||
@property
|
||||
def CONFIG_BASE_FILENAME(self): # noqa: N802
|
||||
return 'lister-%s' % self.LISTER_NAME
|
||||
return 'lister_%s' % self.LISTER_NAME
|
||||
|
||||
@property
|
||||
def ADDITIONAL_CONFIG(self): # noqa: N802
|
||||
|
|
|
@ -117,7 +117,7 @@ class NpmIncrementalLister(NpmListerBase):
|
|||
|
||||
@property
|
||||
def CONFIG_BASE_FILENAME(self): # noqa: N802
|
||||
return 'lister-npm-incremental'
|
||||
return 'lister_npm_incremental'
|
||||
|
||||
def get_next_target_from_response(self, response):
|
||||
"""(Override) Get next npm package name to continue the listing
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue