You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rd...@apache.org on 2010/02/18 17:44:49 UTC

svn commit: r911480 - /subversion/trunk/subversion/bindings/swig/core.i

Author: rdonch
Date: Thu Feb 18 16:44:48 2010
New Revision: 911480

URL: http://svn.apache.org/viewvc?rev=911480&view=rev
Log:
* subversion/bindings/swig/core.i: Fix an indentation error from r911236.
   This also works around a bug in old SWIGs, which don't auto-correct
   indentation in %pythonappend blocks.


Modified:
    subversion/trunk/subversion/bindings/swig/core.i

Modified: subversion/trunk/subversion/bindings/swig/core.i
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/swig/core.i?rev=911480&r1=911479&r2=911480&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/swig/core.i (original)
+++ subversion/trunk/subversion/bindings/swig/core.i Thu Feb 18 16:44:48 2010
@@ -751,7 +751,7 @@
 # references to the providers are gone, they will still be alive,
 # keeping the baton valid.
 %feature("pythonappend") svn_auth_open %{
-   val.__dict__["_deps"] = list(args[0])
+  val.__dict__["_deps"] = list(args[0])
 %}
 #endif