mirror of
https://github.com/beetbox/beets.git
synced 2025-12-27 02:52:33 +01:00
Shortened two lines that where to long.
This commit is contained in:
parent
b376139663
commit
edd2d42cd0
2 changed files with 4 additions and 3 deletions
|
|
@ -778,8 +778,9 @@ class Item(LibModel):
|
|||
|
||||
By default, the item is stored to the database if it is in the
|
||||
database, so any dirty fields prior to the move() call will be written
|
||||
as a side effect. If `store` is `False` however, the item won't be stored,
|
||||
and you'll have to manually store it after invoking this method.
|
||||
as a side effect.
|
||||
If `store` is `False` however, the item won't be stored and you'll
|
||||
have to manually store it after invoking this method.
|
||||
"""
|
||||
self._check_db()
|
||||
dest = self.destination(basedir=basedir)
|
||||
|
|
|
|||
|
|
@ -126,7 +126,7 @@ class FilesystemError(HumanReadableException):
|
|||
|
||||
|
||||
class MoveOperation(Enum):
|
||||
"""Represents the file operations that e.g. various move functions can carry out.
|
||||
"""The file operations that e.g. various move functions can carry out.
|
||||
"""
|
||||
MOVE = 0
|
||||
COPY = 1
|
||||
|
|
|
|||
Loading…
Reference in a new issue