From 5a917c79a084dd12c48cb9d4cd01d28b2ea55a51 Mon Sep 17 00:00:00 2001 From: Inso <insomniak.fr@gmail.com> Date: Sat, 12 Sep 2015 16:23:17 +0200 Subject: [PATCH] Fix syntax error --- src/cutecoin/models/network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cutecoin/models/network.py b/src/cutecoin/models/network.py index f6f6eb8b..fdf42e0e 100644 --- a/src/cutecoin/models/network.py +++ b/src/cutecoin/models/network.py @@ -76,7 +76,7 @@ class NetworkFilterProxyModel(QSortFilterProxyModel): and role == Qt.DisplayRole: if source_data == -1: return "" - else + else: return source_data if index.column() == source_model.columns_types.index('current_hash') \ -- GitLab