mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-12 23:51:08 +00:00
wrap-and-sort: Fix indention.
This commit is contained in:
parent
9d312fbeec
commit
da237f41a9
@ -168,10 +168,9 @@ if __name__ == "__main__":
|
||||
action="store_true", default=False)
|
||||
parser.add_option("-n", "--no-cleanup", help="don't cleanup whitespaces",
|
||||
dest="cleanup", action="store_false", default=True)
|
||||
parser.add_option("-d", "--debian-directory",
|
||||
help="location of the 'debian' directory. "
|
||||
"Default: ./debian", dest="debian_directory",
|
||||
metavar="PATH", default="debian")
|
||||
parser.add_option("-d", "--debian-directory", dest="debian_directory",
|
||||
help="location of the 'debian' directory. Default: "
|
||||
"./debian", metavar="PATH", default="debian")
|
||||
parser.add_option("-v", "--verbose", help="print more information",
|
||||
dest="verbose", action="store_true", default=False)
|
||||
|
||||
@ -183,9 +182,9 @@ if __name__ == "__main__":
|
||||
sys.exit(1)
|
||||
|
||||
if not os.path.isdir(options.debian_directory):
|
||||
print >> sys.stderr, (
|
||||
'%s: Error: Debian directory not found, expecting "%s"'
|
||||
% (script_name, options.debian_directory))
|
||||
print >> sys.stderr, ('%s: Error: Debian directory not found, '
|
||||
'expecting "%s"') % (script_name,
|
||||
options.debian_directory)
|
||||
sys.exit(1)
|
||||
|
||||
main(options)
|
||||
|
Loading…
x
Reference in New Issue
Block a user