Skip to content

Commit

Permalink
BibUpload: fix FFT upload in 'correct' mode
Browse files Browse the repository at this point in the history
* Fixed a syntax error generating an exception when
  elaborating FFT tags in BibUpload 'correct' mode.
  • Loading branch information
jalavik authored and tiborsimko committed Feb 9, 2011
1 parent 3693b38 commit 5050644
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/bibupload/lib/bibupload.py
Original file line number Diff line number Diff line change
Expand Up @@ -1394,7 +1394,7 @@ def _update_description_and_comment(bibdoc, docname, format, description, commen
else:
if not pretend:
bibdoc = bibrecdocs.add_bibdoc(doctype, newname)
for (url, format, description, comment) in urls:
for (url, format, description, comment, flags) in urls:
assert(_add_new_format(bibdoc, url, format, docname, doctype, newname, description, comment, flags))
elif mode == 'append':
try:
Expand Down

0 comments on commit 5050644

Please sign in to comment.