commit 87486e94874f83780921855d836f3fa3e1e36965 parent 31eed35a0ada729ec7c7ca6808309591abb90a9e Author: ThomasV <thomasv@electrum.org> Date: Fri, 29 Jun 2018 11:17:02 +0200 fix: i18n is not imported Diffstat:
M | lib/storage.py | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/storage.py b/lib/storage.py @@ -607,7 +607,7 @@ class WalletStorage(PrintError): action = run_hook('get_action', self) if self.file_exists() and self.requires_upgrade(): if action: - raise WalletFileException(_('Incomplete wallet files cannot be upgraded.')) + raise WalletFileException('Incomplete wallet files cannot be upgraded.') return 'upgrade_storage' if action: return action