Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
limbra
limbra
Commits
005a7cf8
Commit
005a7cf8
authored
Jan 18, 2016
by
LE GAC Renaud
Browse files
Fix a minor bug in RecordPubli.authors_as_list.
parent
924eaf00
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
modules/invenio_tools/recordpubli.py
modules/invenio_tools/recordpubli.py
+1
-1
No files found.
modules/invenio_tools/recordpubli.py
View file @
005a7cf8
...
...
@@ -111,7 +111,7 @@ class RecordPubli(Record):
authors
.
append
(
first_author
)
# sometime the first author is missing
if
first_author
!=
authors
[
0
]:
if
first_author
and
len
(
authors
)
>
0
and
first_author
!=
authors
[
0
]:
authors
.
insert
(
0
,
first_author
)
return
authors
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment