Skip to content

Commit

Permalink
Merge branch 'kakaroto'
Browse files Browse the repository at this point in the history
  • Loading branch information
Youness Alaoui committed Jun 26, 2009
2 parents 3d325ff + f7cfa9a commit 6b66ee9
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions amsn2/core/account_manager.py
Expand Up @@ -127,9 +127,12 @@ def reload(self):
account_dirs = dirs
break
for account_dir in account_dirs:
accv = self.loadAccount(os.path.join(self._accounts_dir, account_dir))
if accv:
self.accountviews.append(accv)
try:
accv = self.loadAccount(os.path.join(self._accounts_dir, account_dir))
if accv:
self.accountviews.append(accv)
except :
pass


def loadAccount(self, dir):
Expand Down

0 comments on commit 6b66ee9

Please sign in to comment.