Browse Source

wizard: log state when view not defined. ref #8916

master
Sander van Grieken 2 years ago
parent
commit
d6ea2f1e30
No known key found for this signature in database
GPG Key ID: 9BCF8209EA402EBA
  1. 2
      electrum/wizard.py

2
electrum/wizard.py

@ -60,7 +60,7 @@ class AbstractWizard:
# msg in a generic choice dialog)
# exception: stay on this view
def resolve_next(self, view: str, wizard_data: dict) -> WizardViewState:
assert view
assert view, f'view not defined: {repr(self.sanitize_stack_item(wizard_data))}'
self._logger.debug(f'view={view}')
assert view in self.navmap

Loading…
Cancel
Save