Skip to content

Commit

Permalink
Shortened two lines that where to long.
Browse files Browse the repository at this point in the history
  • Loading branch information
zigarrre committed Sep 11, 2017
1 parent b376139 commit edd2d42
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions beets/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -778,8 +778,9 @@ def move(self, operation=MoveOperation.MOVE, basedir=None,
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)
Expand Down
2 changes: 1 addition & 1 deletion beets/util/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def get_message(self):


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
Expand Down

0 comments on commit edd2d42

Please sign in to comment.