diff options
-rw-r--r-- | ranger/ext/papermanager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/ext/papermanager.py b/ranger/ext/papermanager.py index 69b3095c..4e53bcc7 100644 --- a/ranger/ext/papermanager.py +++ b/ranger/ext/papermanager.py @@ -65,5 +65,5 @@ class PaperManager(object): filename, year, title, authors, url = dataset if year: ostruct.year = year if title: ostruct.title = title - if authors: ostruct.authors = authors + if authors: ostruct.authors = authors.split(",") if url: ostruct.url = url |