Blob Blame History Raw
From 1cb1c32304569ca96620f76c262e029544990047 Mon Sep 17 00:00:00 2001
From: David Trowbridge <trowbrds@gmail.com>
Date: Tue, 22 Apr 2014 16:17:11 -0700
Subject: [PATCH 5/8] Fix -I with svn repositories.

The line that added the files to the diff command line was indented four spaces
too many, which made it only work if the code happened to drop into that part
of the conditional.

Testing done:
Posted a change to an SVN working directory for just a single file.

Reviewed at https://reviews.reviewboard.org/r/5726/
---
 rbtools/clients/svn.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rbtools/clients/svn.py b/rbtools/clients/svn.py
index 8e065f67a50f2a0466874c1cb97aefc04556bc8d..aee14c99e30c42b48d5cc2d3f0a92cb80d495476 100644
--- a/rbtools/clients/svn.py
+++ b/rbtools/clients/svn.py
@@ -255,7 +255,7 @@ class SVNClient(SCMClient):
                 # Working copy--do a normal range diff
                 diff_cmd.extend(['-r', '%s:%s' % (base, tip)])
 
-            diff_cmd.extend(files)
+        diff_cmd.extend(files)
 
         if self.history_scheduled_with_commit(changelist):
             svn_show_copies_as_adds = getattr(
-- 
1.9.0