From: Philipp Hagemeister Date: Tue, 2 Jul 2013 06:36:20 +0000 (+0200) Subject: Squelch git not found exception (#973) X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=8dba13f7e82ecb57b8e92e43ce63d51937a50288;p=youtube-dl Squelch git not found exception (#973) --- diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py index d4a005f62..db63d0adb 100644 --- a/youtube_dl/__init__.py +++ b/youtube_dl/__init__.py @@ -591,7 +591,7 @@ def _real_main(argv=None): if re.match('[0-9a-f]+', out): ydl.to_screen(u'[debug] Git HEAD: ' + out) except: - pass + sys.exc_clear() ydl.to_screen(u'[debug] Python version %s - %s' %(platform.python_version(), platform.platform())) ydl.to_screen(u'[debug] Proxy map: ' + str(proxy_handler.proxies))