~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to www/apps/download/__init__.py

Fix the download app - it didn't know that server.serve_file now takes the
owner as a user object.

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
            "The path specified is invalid.")
51
51
 
52
52
    # Use the code from server to avoid duplication
53
 
    server.serve_file(req, user, path, download=True)
 
53
    server.serve_file(req, req.user, path, download=True)