From 87486e94874f83780921855d836f3fa3e1e36965 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Fri, 29 Jun 2018 11:17:02 +0200 Subject: [PATCH] fix: i18n is not imported --- lib/storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/storage.py b/lib/storage.py index 6a1c22a2e..69875e3f1 100644 --- 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