Skip to content

Commit

Permalink
Fix legacy tooling initialization when using the --here flag (#12823)
Browse files Browse the repository at this point in the history
  • Loading branch information
ofek authored and steveny91 committed Oct 27, 2022
1 parent 1c8891e commit 2749663
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ddev/src/ddev/cli/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def initialize_old_cli(self):
self.__config['dd_api_key'] = self.config.orgs.get('default', {}).get('api_key', '')
self.__config['dd_app_key'] = self.config.orgs.get('default', {}).get('app_key', '')

kwargs = {'here' if self.config.repo.name == 'local' else self.repo.name: True}
kwargs = {'here' if self.repo.name == 'local' else self.repo.name: True}
initialize_root(self.__config, **kwargs)

def copy(self):
Expand Down

0 comments on commit 2749663

Please sign in to comment.