diff options
author | Loui Chang <louipc.ist@gmail.com> | 2008-12-11 02:14:23 +0100 |
---|---|---|
committer | Loui Chang <louipc.ist@gmail.com> | 2008-12-11 02:14:23 +0100 |
commit | a195e38901915567ad0e6c3b3ae252434bf99b47 (patch) | |
tree | dc36eab4a516c941f7b9ba1d9e31563c64c2922a /tupkg/update/tupkgupdate | |
parent | 9023b22c8b2c729d44ba979148f1b6d127c1c2a1 (diff) | |
download | aur-a195e38901915567ad0e6c3b3ae252434bf99b47.tar.gz aur-a195e38901915567ad0e6c3b3ae252434bf99b47.tar.xz |
Fix incorrect indentation causing errors in tupkgupdate.
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
Diffstat (limited to 'tupkg/update/tupkgupdate')
-rwxr-xr-x | tupkg/update/tupkgupdate | 12 |
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 |