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

« back to all changes in this revision

Viewing changes to lib/common/db.py

  • Committer: wagrant
  • Date: 2008-08-10 12:21:11 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:1010
common.db.get_offering_members: Return fullname as well.

Show diffs side-by-side

added added

removed removed

Lines of Context:
915
915
        Gets the logins of all the people enroled in an offering
916
916
        """
917
917
        query = """\
918
 
SELECT login
 
918
SELECT login.login AS login, login.fullname AS fullname
919
919
FROM login, enrolment
920
920
WHERE login.loginid = enrolment.loginid AND
921
921
    enrolment.offeringid = %d;"""%offeringid