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

« back to all changes in this revision

Viewing changes to ivle/fileservice_lib/listing.py

  • Committer: Matt Giuca
  • Date: 2009-04-23 08:21:35 UTC
  • Revision ID: matt.giuca@gmail.com-20090423082135-5lda1g114ocpc73e
Fileservice: Improved the error message "Revision not found" to
    "Revision not found or file not found in revision $n".
    This error appears whenever the file is not in the given revision, even if
    the revision exists in the repository, so the new text should be less
    confusing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
214
214
    if r_str and not (revision and
215
215
                      ivle.svn.revision_exists(svnclient, path, revision)):
216
216
        req.status = req.HTTP_NOT_FOUND
217
 
        req.headers_out['X-IVLE-Return-Error'] = 'Revision not found'
 
217
        message = ('Revision not found or file not found in revision %d' %
 
218
                   revision.number)
 
219
        req.headers_out['X-IVLE-Return-Error'] = message
218
220
        req.ensure_headers_written()
219
 
        req.write('Revision not found')
 
221
        req.write(message)
220
222
        req.flush()
221
223
        sys.exit()
222
224
    return revision