aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/platform/default/_logging.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/platform/default/_logging.py')
-rw-r--r--tensorflow/python/platform/default/_logging.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tensorflow/python/platform/default/_logging.py b/tensorflow/python/platform/default/_logging.py
index 9212a6ea34..739552f0de 100644
--- a/tensorflow/python/platform/default/_logging.py
+++ b/tensorflow/python/platform/default/_logging.py
@@ -23,7 +23,6 @@ from __future__ import print_function
import logging
import os
-import six
import sys
import time
from logging import DEBUG
@@ -32,6 +31,9 @@ from logging import FATAL
from logging import INFO
from logging import WARN
+import six
+
+
# Controls which methods from pyglib.logging are available within the project
# Do not add methods here without also adding to platform/google/_logging.py
__all__ = ['log', 'debug', 'error', 'fatal', 'info', 'warn', 'warning',