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
rtik/mu/blame/html/fork.mu.html?h=main&id=fedebaf5dbc1b39347ad3e3a1580fa0190c320b6'>^
4fe9f5e8 ^
dbe12410 ^
c5ffb6e1 ^













4fe9f5e8 ^
c5ffb6e1 ^
9570363a ^
d44123ca ^
c5ffb6e1 ^




9570363a ^
d44123ca ^
c5ffb6e1 ^





1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51