From ecc6da3d7d1e73a06c4555e25012b58de1e68713 Mon Sep 17 00:00:00 2001 From: jackjack-jj Date: Wed, 19 Jun 2013 23:06:33 +0200 Subject: [PATCH] clearly show the format of private key files --- pywallet.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pywallet.py b/pywallet.py index 3d393a4..f82680b 100644 --- a/pywallet.py +++ b/pywallet.py @@ -1,6 +1,6 @@ #!/usr/bin/env python #-*- coding: utf-8 -*- -pywversion="2.0.12" +pywversion="2.0.13" never_update=False # @@ -3072,6 +3072,7 @@ if 'twisted' not in missing_dep: WI_FormEnd() IKForm = WI_FormInit('Import keys:', 'ImportKeys', 'divformik') + \ +"The CSV file must have the following format: '5PrivateKey;Label'
" + \ WI_InputText('Wallet Directory: ', 'dir', 'ikf-dir', determine_db_dir()) + \ WI_InputText('Wallet Filename: ', 'name', 'ikf-name', determine_db_name(), 20) + \ WI_InputText('CSV file path: ', 'file', 'ikf-file', '', 60) + \