diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2012-10-22 12:50:47 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2012-10-22 12:51:20 +0200 |
commit | 02b324a23dcf03b364318fcba305ffc968b3d661 (patch) | |
tree | aeae16ccdf97d9de2fc6480cdde3fb79d2b8e453 | |
parent | b8005afc20aac352aa50ca089f33aa279e6ae03b (diff) |
Restore 2.5 compat by activating with_statement future
-rw-r--r-- | youtube_dl/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py index a52d69a30..ad9a06c55 100644 --- a/youtube_dl/__init__.py +++ b/youtube_dl/__init__.py @@ -1,6 +1,8 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +from __future__ import with_statement + __authors__ = ( 'Ricardo Garcia Gonzalez', 'Danny Colligan', |