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

« back to all changes in this revision

Viewing changes to services/diffservice

  • Committer: Matt Giuca
  • Date: 2010-02-25 09:34:17 UTC
  • Revision ID: matt.giuca@gmail.com-20100225093417-02z6stnx9biqpbol
Exercise display: Shows a warning if the worksheet cutoff has passed for this subject, that it will not count towards your marks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
import cjson
32
32
import pysvn
33
33
 
34
 
import ivle.conf
35
34
import ivle.svn
36
35
 
37
36
# Set locale to UTF-8
49
48
 
50
49
# Attempt to get the diff for these revisons
51
50
try:
52
 
    svnclient = ivle.svn.create_auth_svn_client(username=ivle.conf.login,
53
 
                                                password=ivle.conf.svn_pass)
 
51
    svnclient = pysvn.Client()
54
52
    svnclient.exception_style = 1
55
53
    diff = svnclient.diff
56
54