diff --git a/src/cutecoin/core/app.py b/src/cutecoin/core/app.py
index 4a49594baa6035ebd2b8a798bef58f45b7c5e48f..a88292c690ee56e8175d044ace6211b38a54ed49 100644
--- a/src/cutecoin/core/app.py
+++ b/src/cutecoin/core/app.py
@@ -97,8 +97,8 @@ class Application(object):
                 json_data = open(wallet_path, 'r')
                 data = json.load(json_data)
                 wallet.cache.load_from_json(data)
-                for community in account.communities:
-                    wallet.cache.refresh(community)
+            for community in account.communities:
+                wallet.cache.refresh(community)
 
     def save(self, account):
         with open(config.parameters['data'], 'w') as outfile: