wrap-and-sort: Make documentation consistent with backportpackage.

This commit is contained in:
Benjamin Drung 2010-12-23 16:01:22 +01:00
parent 0fe7076e88
commit f822b7c1d9
2 changed files with 4 additions and 4 deletions

View File

@ -56,8 +56,8 @@ configuration files are applied to the first package.
\fB\-n\fR, \fB\-\-no\-cleanup\fR \fB\-n\fR, \fB\-\-no\-cleanup\fR
do not remove trailing whitespaces do not remove trailing whitespaces
.TP .TP
\fB\-d\fIPATH\fR, \fB\-\-debian\-directory\fR=\fIPATH\fR \fB\-d \fIPATH\fR, \fB\-\-debian\-directory\fR=\fIPATH\fR
location of the \fIdebian\fR directory. Default: \fB./debian\fR location of the \fIdebian\fR directory (default: \fB./debian\fR)
.TP .TP
\fB\-v\fR, \fB\-\-verbose\fR \fB\-v\fR, \fB\-\-verbose\fR
print all files that are touched print all files that are touched

View File

@ -193,8 +193,8 @@ if __name__ == "__main__":
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", dest="debian_directory", parser.add_option("-d", "--debian-directory", dest="debian_directory",
help="location of the 'debian' directory. Default: " help="location of the 'debian' directory (default: "
"./debian", metavar="PATH", default="debian") "./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)