diff options
author | Zac Medico <zmedico@gentoo.org> | 2010-10-11 22:25:36 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2010-10-11 22:31:04 -0700 |
commit | dce4822157c39befe25d8264512c739eecaf26e2 (patch) | |
tree | 615e99a4ddb134455d30f330b4c27cca6b4e411b | |
parent | Document egencache --update-changelogs. (diff) | |
download | portage-2.1.9.16.tar.gz portage-2.1.9.16.tar.bz2 portage-2.1.9.16.zip |
Fix indention error in repoman headerstring code.v2.1.9.16
-rwxr-xr-x | bin/repoman | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/repoman b/bin/repoman index d414bf738..55b67e6bc 100755 --- a/bin/repoman +++ b/bin/repoman @@ -2240,9 +2240,9 @@ else: if myfile not in expansion: continue - myout = subprocess_getstatusoutput("egrep -q "+headerstring+" "+myfile) - if myout[0] == 0: - myheaders.append(myfile) + myout = subprocess_getstatusoutput("egrep -q "+headerstring+" "+myfile) + if myout[0] == 0: + myheaders.append(myfile) print("%s have headers that will change." % green(str(len(myheaders)))) print("* Files with headers will cause the " + \ |