mirror of
https://github.com/beetbox/beets.git
synced 2026-01-13 19:52:48 +01:00
random: beets.util.random -> beets.random
This commit is contained in:
parent
9056467fdc
commit
9147fabb97
3 changed files with 3 additions and 3 deletions
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in a new issue