listers: Align config filename with production

This commit is contained in:
Antoine Lambert 2019-04-10 14:52:08 +02:00
parent 8ffd8dadef
commit dac7777cd6
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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