mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-16 01:21:07 +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)
|
action="store_true", default=False)
|
||||||
parser.add_option("-n", "--no-cleanup", help="don't cleanup whitespaces",
|
parser.add_option("-n", "--no-cleanup", help="don't cleanup whitespaces",
|
||||||
dest="cleanup", action="store_false", default=True)
|
dest="cleanup", action="store_false", default=True)
|
||||||
parser.add_option("-d", "--debian-directory",
|
parser.add_option("-d", "--debian-directory", dest="debian_directory",
|
||||||
help="location of the 'debian' directory. "
|
help="location of the 'debian' directory. Default: "
|
||||||
"Default: ./debian", dest="debian_directory",
|
"./debian", metavar="PATH", default="debian")
|
||||||
metavar="PATH", default="debian")
|
|
||||||
parser.add_option("-v", "--verbose", help="print more information",
|
parser.add_option("-v", "--verbose", help="print more information",
|
||||||
dest="verbose", action="store_true", default=False)
|
dest="verbose", action="store_true", default=False)
|
||||||
|
|
||||||
@ -183,9 +182,9 @@ if __name__ == "__main__":
|
|||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
if not os.path.isdir(options.debian_directory):
|
if not os.path.isdir(options.debian_directory):
|
||||||
print >> sys.stderr, (
|
print >> sys.stderr, ('%s: Error: Debian directory not found, '
|
||||||
'%s: Error: Debian directory not found, expecting "%s"'
|
'expecting "%s"') % (script_name,
|
||||||
% (script_name, options.debian_directory))
|
options.debian_directory)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
main(options)
|
main(options)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user