add default filename for export history

This commit is contained in:
bkkcoins 2013-01-11 11:57:49 +07:00
parent e9e117712a
commit 272cdaceab
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ def load_theme_paths():
def csv_transaction(wallet):
try:
fileName = QFileDialog.getSaveFileName(QWidget(), 'Select file to export your wallet transactions to', os.path.expanduser('~/'), "*.csv")
fileName = QFileDialog.getSaveFileName(QWidget(), 'Select file to export your wallet transactions to', os.path.expanduser('~/electrum-history.csv'), "*.csv")
if fileName:
with open(fileName, "w+") as csvfile:
transaction = csv.writer(csvfile)