swiftsync/bin/syncit.py
2013-03-26 14:53:37 +01:00

12 lines
225 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__), "..")))
import sync.accounts
if __name__ == '__main__':
sync.accounts.main()