From edd2d42cd0cbc10e66567fa8c7bdef62fc770862 Mon Sep 17 00:00:00 2001 From: zigarrre Date: Mon, 11 Sep 2017 17:29:57 +0200 Subject: [PATCH] Shortened two lines that where to long. --- beets/library.py | 5 +++-- beets/util/__init__.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/beets/library.py b/beets/library.py index dd9081d10..597cfe625 100644 --- a/beets/library.py +++ b/beets/library.py @@ -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) diff --git a/beets/util/__init__.py b/beets/util/__init__.py index 6673c61e3..db341a646 100644 --- a/beets/util/__init__.py +++ b/beets/util/__init__.py @@ -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