You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
335 B
14 lines
335 B
#! /usr/bin/env python
|
|
|
|
import sys
|
|
|
|
if __package__ is None and not hasattr(sys, "frozen"):
|
|
# direct call of __main__.py
|
|
import os.path
|
|
path = os.path.realpath(os.path.abspath(__file__))
|
|
sys.path.append(os.path.dirname(os.path.dirname(path)))
|
|
|
|
import youtube_dl_gui
|
|
|
|
if __name__ == '__main__':
|
|
youtube_dl_gui.main()
|