random: beets.util.random -> beets.random

This commit is contained in:
Carl Suster 2019-04-07 11:56:44 +10:00
parent 9056467fdc
commit 9147fabb97
3 changed files with 3 additions and 3 deletions

View file

@ -19,7 +19,7 @@ from __future__ import division, absolute_import, print_function
from beets.plugins import BeetsPlugin
from beets.ui import Subcommand, decargs, print_
from beets.util.random import random_objs
from beets.random import random_objs
def random_func(lib, opts, args):

View file

@ -13,7 +13,7 @@
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
"""Test the beets.util.random utilities associated with the random plugin.
"""Test the beets.random utilities associated with the random plugin.
"""
from __future__ import division, absolute_import, print_function
@ -24,7 +24,7 @@ from test.helper import TestHelper
import math
from random import Random
from beets.util import random
from beets import random
class RandomTest(unittest.TestCase, TestHelper):