summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lepus.uberspace.de>2014-12-03 19:17:54 +0100
committerhut <hut@lepus.uberspace.de>2014-12-03 19:17:54 +0100
commit8bd812c02a1e08aaba2a6a8ca924c41c525bea40 (patch)
tree423a2819f1ed6b2eb207cd8fe28acc83c28b6096
parent8d1b25656c488314073f4d317fa4d794b253f723 (diff)
downloadranger-8bd812c02a1e08aaba2a6a8ca924c41c525bea40.tar.gz
ext.papermanager: turn result.authors into a list
-rw-r--r--ranger/ext/papermanager.py2
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