diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2012-11-28 03:34:40 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2012-11-28 03:34:40 +0100 |
commit | 9e8056d5a7b6b366874088cd30d23ba4a52d3861 (patch) | |
tree | d11eede0719399ed0f55e68e38c4b73eae5948f2 /youtube_dl/FileDownloader.py | |
parent | c6f3620859228754434d21c396ce5a655e972828 (diff) |
Use relative imports
Diffstat (limited to 'youtube_dl/FileDownloader.py')
-rw-r--r-- | youtube_dl/FileDownloader.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube_dl/FileDownloader.py b/youtube_dl/FileDownloader.py index 9dc3523e0..a135be352 100644 --- a/youtube_dl/FileDownloader.py +++ b/youtube_dl/FileDownloader.py @@ -1,6 +1,8 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +from __future__ import absolute_import + import math import os import re @@ -12,7 +14,7 @@ import time if os.name == 'nt': import ctypes -from utils import * +from .utils import * class FileDownloader(object): |