From c0c2f50416859a2b36e11dc83e1e6c9aeb31e588 Mon Sep 17 00:00:00 2001 From: Vincent Jacques Date: Mon, 13 Feb 2012 20:56:57 +0100 Subject: [PATCH] Fix previous commit --- github/Github.py | 2 +- run_tests.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/github/Github.py b/github/Github.py index 73002f92..dfdbc232 100644 --- a/github/Github.py +++ b/github/Github.py @@ -17,7 +17,7 @@ class Github: def get_method( self ): return self.__verb - def _rawRequest( self, verb, url, data = None ): + def _dataRequest( self, verb, url, data = None ): assert( verb in [ "HEAD", "GET", "POST", "PATCH", "PUT", "DELETE" ] ) # print verb, url, data diff --git a/run_tests.sh b/run_tests.sh index 130c890a..19069514 100644 --- a/run_tests.sh +++ b/run_tests.sh @@ -15,6 +15,6 @@ echo for f in $(find -name "*IntegrationTest.py") do - # python $f + python $f echo -done \ No newline at end of file +done