mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Fix incorrect indentation causing errors in tupkgupdate.
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
This commit is contained in:
parent
9023b22c8b
commit
a195e38901
1 changed files with 6 additions and 6 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue