From d67ba50200391548203386b3489a9aa5024e4015 Mon Sep 17 00:00:00 2001 From: Denis Silakov Date: Fri, 8 May 2015 00:20:41 +0400 Subject: [PATCH] Fix indents in urpm-repodiff --- urpm-repodiff.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/urpm-repodiff.py b/urpm-repodiff.py index ddce5c5..6c47faa 100755 --- a/urpm-repodiff.py +++ b/urpm-repodiff.py @@ -218,7 +218,7 @@ def CheckOutput(arg): arg.output = open(file_output, "w") except IOError: print _("Error: File %s cannot be created") % file_output - arg.output = None + arg.output = None exit_proc(arg) else: print _("Error: Path %s does not exist.") % dirname @@ -310,7 +310,7 @@ def ReadIgnoreList(arg): if string == '\n': continue if string.endswith('\n'): - string = string[:-1] + string = string[:-1] ignorelist.append(string) ifile.close() ignorelist.sort()