summaryrefslogtreecommitdiffstats
path: root/patches/opkg-utils-r4747/0030-opkg-make-index-fix-mis-indented-else.patch
blob: 68d167e6c8e4fadc589346e5beb9d646f2fd130b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From: Marc Olzheim <marc@iphion.nl>
Date: Thu, 4 Oct 2012 11:01:10 +0200
Subject: [PATCH] opkg-make-index: fix mis-indented else:

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 opkg-make-index | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/opkg-make-index b/opkg-make-index
index 1c3a8e1..44fa64d 100755
--- a/opkg-make-index
+++ b/opkg-make-index
@@ -213,7 +213,7 @@ if filelist_filename:
             (h,t) = os.path.split(fn)
             if not t: continue
             if t not in files: files[t] = name+':'+fn
-        else: files[t] = files[t] + ',' + name+':'+fn
+            else: files[t] = files[t] + ',' + name+':'+fn
 
     tmp_filelist_filename = ("%s.%d" % (filelist_filename, os.getpid()))
     f = open(tmp_filelist_filename, "w")