From a609e29a65e1bfe4c864ac62a142f23b2b894731 Mon Sep 17 00:00:00 2001
From: Stefano Zacchiroli <zack@upsilon.cc>
Date: Fri, 15 Sep 2017 15:22:03 +0200
Subject: [PATCH] remove whitespace mixture from ln-sphinx-subprojects

purely cosmetic change
---
 docs/bin/ln-sphinx-subprojects | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/docs/bin/ln-sphinx-subprojects b/docs/bin/ln-sphinx-subprojects
index 0f1d4ebd..91d806f0 100755
--- a/docs/bin/ln-sphinx-subprojects
+++ b/docs/bin/ln-sphinx-subprojects
@@ -3,23 +3,23 @@ set -e
 
 create_links () {
     for pymodule in $(cd ../../ && bin/ls-py-modules) ; do
-	if [ "$pymodule" = 'swh-docs' ] ; then
-	    continue
-	fi
-	if [ ! -e "$pymodule" -a -d "../../${pymodule}/docs" ] ; then
-	    ln -s "../../${pymodule}/docs" "$pymodule"
-	fi
+        if [ "$pymodule" = 'swh-docs' ] ; then
+            continue
+        fi
+        if [ ! -e "$pymodule" -a -d "../../${pymodule}/docs" ] ; then
+            ln -s "../../${pymodule}/docs" "$pymodule"
+        fi
     done
 }
 
 remove_links () {
     for pymodule in $(cd ../../ && bin/ls-py-modules) ; do
-	if [ "$pymodule" = 'swh-docs' ] ; then
-	    continue
-	fi
-	if [ -L "$pymodule" ] ; then
-	    rm "$pymodule"
-	fi
+        if [ "$pymodule" = 'swh-docs' ] ; then
+            continue
+        fi
+        if [ -L "$pymodule" ] ; then
+            rm "$pymodule"
+        fi
     done
 }
 
-- 
GitLab