Make profiler.utils private

Add "_" to utils module to show that they are private, and shouldn't
be used outside of this lib

Change-Id: Ic74321407f8790520e8c4ef932101c61a95fefbe
This commit is contained in:
Boris Pavlovic 2014-07-02 19:43:05 +04:00
parent 587bd6499b
commit 33fdfd7b83
4 changed files with 3 additions and 3 deletions

View File

@ -15,8 +15,8 @@
import webob.dec
from osprofiler import _utils as utils
from osprofiler import profiler
from osprofiler import utils
def get_trace_id_headers():

View File

@ -17,7 +17,7 @@ import base64
import hashlib
import hmac
from osprofiler import utils
from osprofiler import _utils as utils
from tests import test

View File

@ -16,8 +16,8 @@
import mock
from webob import response as webob_response
from osprofiler import _utils as utils
from osprofiler import profiler
from osprofiler import utils
from osprofiler import web
from tests import test