Move utils into the reviewstats namespace.

Change-Id: I1b8418d7e0885d963df32f4c718855d2e989107d
This commit is contained in:
Robert Collins 2013-11-25 07:00:16 +00:00
parent 44fdb1f2c4
commit 622f67695c
4 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@ import getpass
import optparse
import sys
import utils
from reviewstats import utils
def main(argv=None):

View File

@ -23,7 +23,7 @@ import logging
import optparse
import sys
import utils
from reviewstats import utils
def sec_to_period_string(seconds):

View File

@ -11,7 +11,7 @@
# under the License.
from reviewstats.tests import base
import utils
from reviewstats import utils
class TestProjectInfo(base.TestCase):