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
37094a47
Commit
37094a47
authored
Nov 08, 2019
by
LE GAC Renaud
Browse files
Update to fix iterkeys.
parent
2b1514f3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/invenio_tools/recordpubli.py
modules/invenio_tools/recordpubli.py
+1
-1
views/harvest/layout.tex
views/harvest/layout.tex
+1
-1
No files found.
modules/invenio_tools/recordpubli.py
View file @
37094a47
...
...
@@ -136,7 +136,7 @@ class RecordPubli(Record):
# Instantiate DataFrame for field 100 and 700
#
di
=
{
"100"
:
None
,
"700"
:
None
}
for
key
in
di
.
iter
keys
():
for
key
in
di
.
keys
():
if
key
not
in
self
:
continue
...
...
views/harvest/layout.tex
View file @
37094a47
...
...
@@ -92,7 +92,7 @@
#
# alphabetic order for actions, collection and publication title
#
actions = sorted(publications.
iter
keys())
actions = sorted(publications.keys())
collection
_
logs = sorted(collection
_
logs, key=lambda msg: msg.title)
...
...
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