aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/FileDownloader.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2012-11-28 03:34:40 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2012-11-28 03:34:40 +0100
commit9e8056d5a7b6b366874088cd30d23ba4a52d3861 (patch)
treed11eede0719399ed0f55e68e38c4b73eae5948f2 /youtube_dl/FileDownloader.py
parentc6f3620859228754434d21c396ce5a655e972828 (diff)
downloadyoutube-dl-9e8056d5a7b6b366874088cd30d23ba4a52d3861.tar.xz
Use relative imports
Diffstat (limited to 'youtube_dl/FileDownloader.py')
-rw-r--r--youtube_dl/FileDownloader.py4
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):