swiftsync/bin/syncit.py
Chmouel Boudjnah 63de1098d1 sync account.
2013-03-20 18:19:34 +01:00

12 lines
239 B
Python
Executable File

#!/usr/bin/env python
# -*- encoding: utf-8 -*-
import sys
import os
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
from sync.accounts import sync_accounts
if __name__ == '__main__':
sync_accounts()