Skip to content

Commit

Permalink
Fix bug #281
Browse files Browse the repository at this point in the history
  • Loading branch information
Insoleet committed Dec 8, 2015
1 parent 5ab6cda commit a7bdaff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sakia/core/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ def import_account(self, file, name):
name, 'properties')
json_data = open(account_path, 'r')
data = json.load(json_data)
account = Account.load(data)
account = Account.load(data, self._identities_registry)
account.name = name
self.add_account(account)
self.save(account)
Expand Down

0 comments on commit a7bdaff

Please sign in to comment.