Use relative imports
This commit is contained in:
parent
c6f3620859
commit
9e8056d5a7
5 changed files with 16 additions and 9 deletions
|
@ -2,6 +2,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
from __future__ import with_statement
|
||||
from __future__ import absolute_import
|
||||
|
||||
__authors__ = (
|
||||
'Ricardo Garcia Gonzalez',
|
||||
|
@ -39,10 +40,10 @@ import subprocess
|
|||
import sys
|
||||
import warnings
|
||||
|
||||
from utils import *
|
||||
from FileDownloader import *
|
||||
from InfoExtractors import *
|
||||
from PostProcessor import *
|
||||
from .utils import *
|
||||
from .FileDownloader import *
|
||||
from .InfoExtractors import *
|
||||
from .PostProcessor import *
|
||||
|
||||
def updateSelf(downloader, filename):
|
||||
''' Update the program file with the latest version from the repository '''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue