From d7d0470cc407285a050bb4bf8a09f399cbd9713e Mon Sep 17 00:00:00 2001 From: Anh Tran Date: Fri, 21 Oct 2016 14:31:40 +0700 Subject: [PATCH] Remove redundant 'the' Change-Id: I48b0f125a70cda096e17bc4f65da463c176add0f --- doc/source/examples.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/source/examples.rst b/doc/source/examples.rst index 05722c1..cded8b7 100644 --- a/doc/source/examples.rst +++ b/doc/source/examples.rst @@ -22,7 +22,7 @@ retrieve the Jenkins server version. version = server.get_version() print('Hello %s from Jenkins %s' % (user['fullName'], version)) -The above code prints the the fullName attribute of the user and the version of +The above code prints the fullName attribute of the user and the version of the Jenkins master running on 'localhost:8080'. For example, it may print "Hello John from Jenkins 2.0". @@ -44,12 +44,12 @@ You can install the "kerberos" package from PyPI using the obvious pip command. pip install kerberos -.. note:: This might require python header files as well +.. note:: This might require python header files as well as kerberos header files. -If you have "kerberos" python package installed, python-jenkins tries to authenticate -using kerberos automatically when the Jenkins server replies "401 Unauthorized" -and indicates it supports kerberos. That is, kerberos authentication should +If you have "kerberos" python package installed, python-jenkins tries to authenticate +using kerberos automatically when the Jenkins server replies "401 Unauthorized" +and indicates it supports kerberos. That is, kerberos authentication should work automagically. For a quick test, just try the following. ::