From 34ac317bfa122fcbb8d87c96b95fbeb02e34bf9f Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Sat, 18 Nov 2017 09:25:02 +0100 Subject: [PATCH] Use absolute_import in uptime module --- bumblebee/modules/uptime.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bumblebee/modules/uptime.py b/bumblebee/modules/uptime.py index e7e68c9..34e4085 100644 --- a/bumblebee/modules/uptime.py +++ b/bumblebee/modules/uptime.py @@ -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