summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoui Chang <louipc.ist@gmail.com>2008-12-11 02:14:23 +0100
committerLoui Chang <louipc.ist@gmail.com>2008-12-11 02:14:23 +0100
commita195e38901915567ad0e6c3b3ae252434bf99b47 (patch)
treedc36eab4a516c941f7b9ba1d9e31563c64c2922a
parent9023b22c8b2c729d44ba979148f1b6d127c1c2a1 (diff)
downloadaur-a195e38901915567ad0e6c3b3ae252434bf99b47.tar.gz
aur-a195e38901915567ad0e6c3b3ae252434bf99b47.tar.xz
Fix incorrect indentation causing errors in tupkgupdate.
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
-rwxr-xr-xtupkg/update/tupkgupdate12
1 files changed, 6 insertions, 6 deletions
diff --git a/tupkg/update/tupkgupdate b/tupkg/update/tupkgupdate
index 4d0d6894..06154e8f 100755
--- a/tupkg/update/tupkgupdate
+++ b/tupkg/update/tupkgupdate
@@ -544,12 +544,12 @@ for package in packages.values():
if (switches.get("--paranoid") == True and package.new.file != None):
if not (areFilesIdentical(package.old.file, package.new.file)):
warning("New package file with identical version '" +
- package.new.file + "' is different than the old one:")
- if (switches.get("--delete") == True):
- warning(" Deleting the new file.")
- delete.append(package.new.file)
- else:
- warning(" Ignoring the new file.")
+ package.new.file + "' is different than the old one:")
+ if (switches.get("--delete") == True):
+ warning(" Deleting the new file.")
+ delete.append(package.new.file)
+ else:
+ warning(" Ignoring the new file.")
continue
# 5