1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 12:15:40 +01:00
svtplay-dl/lib/svtplay_dl/__main__.py

13 lines
378 B
Python
Raw Normal View History

2013-03-23 15:43:05 +01:00
#!/usr/bin/env python
2014-03-19 22:44:58 +01:00
# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
2013-03-23 15:43:05 +01:00
import sys
if __package__ is None and not hasattr(sys, "frozen"):
# direct call of __main__.py
import os.path
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
2014-04-02 20:14:38 +02:00
import svtplay_dl
if __name__ == '__main__':
svtplay_dl.main()