Merge pull request #207 from fredj/absolute_import
Use absolute_import in uptime module
This commit is contained in:
commit
edb53ca34a
1 changed files with 4 additions and 0 deletions
|
@ -2,6 +2,10 @@
|
|||
|
||||
"""Displays the system uptime."""
|
||||
|
||||
# Use absolute_import because there's already a datatime module
|
||||
# in the same directory
|
||||
from __future__ import absolute_import
|
||||
|
||||
import bumblebee.input
|
||||
import bumblebee.output
|
||||
import bumblebee.engine
|
||||
|
|
Loading…
Reference in a new issue