From b322e3dda78166f8fb5d3cd5fedc3cabd22e9364 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Thu, 10 Apr 2014 11:51:21 -0700 Subject: [PATCH] fix Sphinx complaint Apparently, the ReST syntax doesn't like letters appearing after a `backticked` phrase. That's sorta annoying. --- beets/library.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/beets/library.py b/beets/library.py index fb6c02869..d053784fc 100644 --- a/beets/library.py +++ b/beets/library.py @@ -389,7 +389,8 @@ class Item(LibModel): plugins.send('after_write', item=self, path=path) def try_write(self, path=None): - """Calls `write()` but catches and logs `FileOperationError`s. + """Calls `write()` but catches and logs `FileOperationError` + exceptions. Returns `False` an exception was caught and `True` otherwise. """