Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
correct some typos in variable names
  • Loading branch information
calcnerd256 committed Mar 21, 2016
1 parent 2f77a78 commit aea681d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Skripten/EOAconvert.py
Expand Up @@ -1518,7 +1518,7 @@ def alph_fndex(fndex):
alphabet = "abcdefghijklmnopqrstuvwxyz"
quotient, remainder = divmod(fndex, len(alphabet))
if not quotient: return alphabet[fndex]
return alph_index(quotient - 1) + alph_index(remainder)
return alph_fndex(quotient - 1) + alph_fndex(remainder)


def replace_footnote_equations(footnote):
Expand Down Expand Up @@ -2804,7 +2804,7 @@ def bring_footnote_down_django(footnote, fragment, footnote_number, object_numbe
)
)
)
foot.set("anchor", anchorNumber)
foot.set("anchor", anchor_number)
foot.set("id", unique_id)
foot.text = footnote_text
for kid in kids:
Expand Down

0 comments on commit aea681d

Please sign in to comment.