From: Loic Baron Date: Wed, 20 Nov 2013 15:51:13 +0000 (+0100) Subject: Merge branch 'master' of ssh://git.onelab.eu/git/myslice X-Git-Tag: myslice-0.3-0~113^2~7 X-Git-Url: http://git.onelab.eu/?p=myslice.git;a=commitdiff_plain;h=dc832ad1a26a47483f8297678a9417640b7c9925;hp=a702fd065a2da674cd51889217091800bdff4328 Merge branch 'master' of ssh://git.onelab.eu/git/myslice --- diff --git a/README b/README index 3c0f943a..2a183a89 100644 --- a/README +++ b/README @@ -9,6 +9,8 @@ See the devel/ subdir for more devel-oriented doc. * REQUIREMENTS is to have python + django (1.5.2) installed django ** should be straightforward ** see devel/django-install.txt in case of trouble +$ apt-get install python-django +$ apt-get install python-django-south * git clone git://git.onelab.eu/myslice.git -- or -- diff --git a/manifold/manifoldapi.py b/manifold/manifoldapi.py index ee1f82ec..6d168bb3 100644 --- a/manifold/manifoldapi.py +++ b/manifold/manifoldapi.py @@ -70,7 +70,11 @@ class ManifoldAPI: try: if debug: print "====> ManifoldAPI.%s"%repr(),"url",self.url - print "=> auth",self.auth + # No password in the logs + logAuth = self.auth + if 'AuthString' in logAuth: + logAuth['AuthString']="XXX" + print "=> auth",logAuth print "=> args",args,"kwds",kwds annotations = { 'authentication': self.auth