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

« back to all changes in this revision

Viewing changes to services/diffservice

  • Committer: Matt Giuca
  • Date: 2010-07-21 04:20:44 UTC
  • Revision ID: matt.giuca@gmail.com-20100721042044-uopyzuiuji6vlsu7
Project page: Moved instructions under 'latest submissions' above the table, or it will be hard to see them under hundreds of submissions.

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
34
35
import ivle.svn
35
36
 
36
37
# Set locale to UTF-8
48
49
 
49
50
# Attempt to get the diff for these revisons
50
51
try:
51
 
    svnclient = pysvn.Client()
 
52
    svnclient = ivle.svn.create_auth_svn_client(username=ivle.conf.login,
 
53
                                                password=ivle.conf.svn_pass)
52
54
    svnclient.exception_style = 1
53
55
    diff = svnclient.diff
54
56