Use relative imports

This commit is contained in:
Philipp Hagemeister 2012-11-28 03:34:40 +01:00
parent c6f3620859
commit 9e8056d5a7
5 changed files with 16 additions and 9 deletions

View file

@ -1,6 +1,8 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import absolute_import
import datetime
import netrc
import os
@ -12,7 +14,7 @@ import xml.etree.ElementTree
import random
import math
from utils import *
from .utils import *
class InfoExtractor(object):