Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pybossa/view/projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ def is_admin_or_owner(project):
def upload_task_guidelines_image(short_name):
error = False
return_code = 200
project = project_by_shortname(short_name)
project, owner, ps = project_by_shortname(short_name)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

minor. owner, ps as unused can be replaced with underscores


imgurls = []
if is_editor_disabled():
Expand Down