You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by pq...@apache.org on 2010/01/08 00:15:10 UTC

svn commit: r897047 - /incubator/libcloud/trunk/libcloud/base.py

Author: pquerna
Date: Thu Jan  7 23:15:10 2010
New Revision: 897047

URL: http://svn.apache.org/viewvc?rev=897047&view=rev
Log:
Add trailing newline to body in debug log

Modified:
    incubator/libcloud/trunk/libcloud/base.py

Modified: incubator/libcloud/trunk/libcloud/base.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/base.py?rev=897047&r1=897046&r2=897047&view=diff
==============================================================================
--- incubator/libcloud/trunk/libcloud/base.py (original)
+++ incubator/libcloud/trunk/libcloud/base.py Thu Jan  7 23:15:10 2010
@@ -232,7 +232,7 @@
                                     debuglevel=r.debuglevel)
         rr.begin()
         rv += ht
-        rv += "# -------- end %d response ----------\n" % (id(r))
+        rv += "\n# -------- end %d response ----------\n" % (id(r))
         return (rr, rv)
 
     def getresponse(self):