Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix merge problems
  • Loading branch information
Alexey Solovyev committed Oct 27, 2022
commit 0fb067a9053b5c897022414ba9478bc9c6dce2be
2 changes: 1 addition & 1 deletion crosspm/cpm.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ def command(self, command_):
if command_ is Locker:
do_load = self._config.recursive

cpm_ = command_(self._config, do_load, self.altsearch, self.altsearch_branch)
cpm_ = command_(self.altsearch, self.altsearch_branch, self._config, do_load)
cpm_.entrypoint()

if self._return_result:
Expand Down
2 changes: 1 addition & 1 deletion crosspm/helpers/downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class Downloader(Command):

altsearch = False
altsearchbranch = ''
def __init__(self,altsearch, altsearchbranch, config: Config, do_load: bool, recursive: Optional[bool] = None):
def __init__(self, altsearch, altsearchbranch, config: Config, do_load: bool, recursive: Optional[bool] = None):
self._log = logging.getLogger('crosspm')
self._config = config # type: Config
self.cache = config.cache
Expand Down