Shortened two lines that where to long.

This commit is contained in:
zigarrre 2017-09-11 17:29:57 +02:00
parent b376139663
commit edd2d42cd0
2 changed files with 4 additions and 3 deletions

View file

@ -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)

View file

@ -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