diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-10-28 11:59:42 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-10-28 12:04:03 +0100 |
commit | 5c7bdc9a7fb2ed4f963dbacc7c1bee8cc9223303 (patch) | |
tree | 646bc6f88484039e343bc1e343a894232a7bddf4 | |
parent | 55b2fc18772a512a2227757423e55dc6c7523113 (diff) | |
download | patches-5c7bdc9a7fb2ed4f963dbacc7c1bee8cc9223303.tar patches-5c7bdc9a7fb2ed4f963dbacc7c1bee8cc9223303.tar.gz |
gnu: python-debian: Avoid @itemize in description.
* gnu/packages/python.scm (python-debian): Use @enumerate instead of
@itemize.
-rw-r--r-- | gnu/packages/python.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 45fd417e86..08f0146641 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -5799,10 +5799,12 @@ Python's @code{ctypes} foreign function interface (FFI).") (home-page "http://packages.debian.org/sid/python-debian") (synopsis "Debian package related modules") (description + ;; XXX: Use @enumerate instead of @itemize to work around + ;; <http://bugs.gnu.org/21772>. "This package provides Python modules that abstract many formats of Debian-related files, such as: -@itemize +@enumerate @item Debtags information; @item @file{debian/changelog} files; @item packages files, pdiffs; @@ -5810,7 +5812,7 @@ Debian-related files, such as: @file{debian/control}, @file{.changes}, @file{.dsc}; @item Raw @file{.deb} and @file{.ar} files, with (read-only) access to contained files and meta-information. -@end itemize\n") +@end enumerate\n") ;; Modules are either GPLv2+ or GPLv3+. (license gpl3+))) |