use absolute_imports
This commit is contained in:
parent
cf16459ad7
commit
ee801cc556
2 changed files with 4 additions and 2 deletions
|
@ -1,7 +1,9 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# vi:si:et:sw=4:sts=4:ts=4
|
# vi:si:et:sw=4:sts=4:ts=4
|
||||||
# GPL 2008-2014
|
# GPL 2008-2014
|
||||||
|
from __future__ import absolute_imports
|
||||||
|
|
||||||
__version__ = 'git'
|
__version__ = 'git'
|
||||||
|
|
||||||
|
|
||||||
from timeline import Timelines
|
from .timeline import Timelines
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# vi:si:et:sw=4:sts=4:ts=4
|
# vi:si:et:sw=4:sts=4:ts=4
|
||||||
# GPL 2008-2014
|
# GPL 2008-2014
|
||||||
from __future__ import division, with_statement, print_function
|
from __future__ import division, print_function, absolute_imports
|
||||||
|
|
||||||
from glob import glob
|
from glob import glob
|
||||||
from time import time
|
from time import time
|
||||||
|
|
Loading…
Reference in a new issue