diff options
author | Jesús Eduardo <heckyel@hyperbola.info> | 2017-09-11 17:47:17 -0500 |
---|---|---|
committer | Jesús Eduardo <heckyel@hyperbola.info> | 2017-09-11 17:47:17 -0500 |
commit | 14738704ede6dfa6ac79f362a9c1f7f40f470cdc (patch) | |
tree | 31c83bdd188ae7b64d7169974d6f066ccfe95367 /mvc/windows/exe_main.py | |
parent | eb1896583afbbb622cadcde1a24e17173f61904f (diff) | |
download | librevideoconverter-14738704ede6dfa6ac79f362a9c1f7f40f470cdc.tar.lz librevideoconverter-14738704ede6dfa6ac79f362a9c1f7f40f470cdc.tar.xz librevideoconverter-14738704ede6dfa6ac79f362a9c1f7f40f470cdc.zip |
rename mvc at lvc
Diffstat (limited to 'mvc/windows/exe_main.py')
-rwxr-xr-x | mvc/windows/exe_main.py | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/mvc/windows/exe_main.py b/mvc/windows/exe_main.py deleted file mode 100755 index bd171d3..0000000 --- a/mvc/windows/exe_main.py +++ /dev/null @@ -1,22 +0,0 @@ -# before anything else, settup logging -from mvc.windows import exelogging -exelogging.setup_logging() - -import os -import sys - -from mvc import settings -from mvc.windows import autoupdate -from mvc.widgets import app -from mvc.widgets import initialize -from mvc.ui.widgets import Application - -# add the directories for ffmpeg and avconv to our search path -exe_dir = os.path.dirname(sys.executable) -settings.add_to_search_path(os.path.join(exe_dir, 'ffmpeg')) -settings.add_to_search_path(os.path.join(exe_dir, 'avconv')) -# run the app -app.widgetapp = Application() -app.widgetapp.connect("window-shown", lambda w: autoupdate.startup()) -initialize(app.widgetapp) -autoupdate.shutdown() |