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

« back to all changes in this revision

Viewing changes to ivle/fileservice_lib/action.py

  • Committer: William Grant
  • Date: 2009-01-22 04:47:42 UTC
  • mfrom: (1080.1.93 storm)
  • Revision ID: grantw@unimelb.edu.au-20090122044742-sa8gnww0ma2bm2rv
Merge Storm branch. ivle.db is dead. Watch out for the schema change.

Show diffs side-by-side

added added

removed removed

Lines of Context:
151
151
    # If we're being asked again, then it means the credentials failed for
152
152
    # some reason and we should just fail. (This is not desirable, but it's
153
153
    # better than being asked an infinite number of times).
154
 
    return (existing_login != "", ivle.conf.login, ivle.conf.svn_pass, True)
 
154
    return (existing_login != "", str(ivle.conf.login),
 
155
                                  str(ivle.conf.svn_pass), True)
155
156
 
156
157
# Make a Subversion client object
157
158
svnclient = pysvn.Client()