From b58cb5025f655e23719958b97be20a8de550d9b5 Mon Sep 17 00:00:00 2001 From: Vincent Jacques Date: Sat, 18 Feb 2012 04:52:46 +0000 Subject: [PATCH] Remove trailing spaces --- Reference.md | 4 ++-- github/Requester.UnitTest.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Reference.md b/Reference.md index 9cac0c99..a8936114 100644 --- a/Reference.md +++ b/Reference.md @@ -67,7 +67,7 @@ Class `NamedUser` ### Watching - `get_watched()`: list of `Repository` - + ### Organizations - `get_orgs()` : list of `Organization` @@ -90,7 +90,7 @@ Class `Organization` - `create_fork( repo )`: `Repository` ### Members - + - `get_members()`: list of `NamedUser` - `has_in_members( user )`: `bool` - `remove_from_members( user )` diff --git a/github/Requester.UnitTest.py b/github/Requester.UnitTest.py index e35fd768..854173e3 100644 --- a/github/Requester.UnitTest.py +++ b/github/Requester.UnitTest.py @@ -16,7 +16,7 @@ class TestCase( unittest.TestCase ): self.connectionFactory = MockMockMock.Mock( "httplib.HTTPSConnection" ) self.connection = MockMockMock.Mock( "connection", self.connectionFactory ) self.response = MockMockMock.Mock( "response", self.connectionFactory ) - + httplib.HTTPSConnection = self.connectionFactory.object def tearDown( self ):