~rnr-developers/rnr-server/rnrclient

« back to all changes in this revision

Viewing changes to rnrclient.py

  • Committer: Anthony Lenton
  • Date: 2011-01-05 14:26:52 UTC
  • Revision ID: anthony.lenton@canonical.com-20110105142652-qd26wou8ssg0j5em
Added a trailing slash to the server-status call.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
    @returns_json
27
27
    def server_status(self):
28
28
        """Check the state of the server, to see if everything's ok."""
29
 
        return self._get('server-status')
 
29
        return self._get('server-status/')
30
30
 
31
31
    @validate('days', int, required=False)
32
32
    @returns_list_of(ReviewsStats)