Skip to content

Commit

Permalink
#2 Fixed dictonary not being accessed correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenCochell committed Dec 26, 2021
1 parent d473a06 commit aada247
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cursepy/handlers/forgesvc.py
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ def low_format(data: dict, addon_id: int) -> base.CurseFile:

# Add the dependency ID's:

final.append(depen('addonId'))
final.append(depen['addonId'])

return base.CurseFile(data['id'], addon_id, data['displayName'], data['fileName'], data['fileDate'],
data['downloadUrl'], data['fileLength'], tuple(data['gameVersion']), tuple(final))
Expand Down

0 comments on commit aada247

Please sign in to comment.