From 87eb8b21e69728827841b28353f0d56d7d63ab5c Mon Sep 17 00:00:00 2001 From: Chmouel Boudjnah Date: Tue, 26 Mar 2013 14:53:37 +0100 Subject: [PATCH] Call the proper method after refactoring was done. --- bin/syncit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/syncit.py b/bin/syncit.py index 9b65ebe..882a5f3 100755 --- a/bin/syncit.py +++ b/bin/syncit.py @@ -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()