Call the proper method after refactoring was done.

This commit is contained in:
Chmouel Boudjnah 2013-03-26 14:53:37 +01:00
parent b5d3bb83c9
commit 87eb8b21e6
1 changed files with 2 additions and 2 deletions

View File

@ -4,8 +4,8 @@ import sys
import os
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
from sync.accounts import sync_accounts
import sync.accounts
if __name__ == '__main__':
sync_accounts()
sync.accounts.main()