diff options
author | hut <hut@lepus.uberspace.de> | 2014-12-03 19:17:54 +0100 |
---|---|---|
committer | hut <hut@lepus.uberspace.de> | 2014-12-03 19:17:54 +0100 |
commit | 8bd812c02a1e08aaba2a6a8ca924c41c525bea40 (patch) | |
tree | 423a2819f1ed6b2eb207cd8fe28acc83c28b6096 | |
parent | 8d1b25656c488314073f4d317fa4d794b253f723 (diff) | |
download | ranger-8bd812c02a1e08aaba2a6a8ca924c41c525bea40.tar.gz |
ext.papermanager: turn result.authors into a list
-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 |