blob: 720cc3a0a4c9cff9e5196cee0c1164d4dbf2556d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/usr/bin/env python
"""Generates Linux Format articles."""
__author__ = "Patrick K. O'Brien <pobrien@orbtech.com>"
__cvsid__ = "$Id$"
__revision__ = "$Revision$"[11:-2]
import locale
try:
locale.setlocale(locale.LC_ALL, '')
except:
pass
from docutils.core import publish_cmdline, default_description
from LXFwriter import Writer
def main():
description = ("Generates Linux Format articles. " + default_description)
publish_cmdline(writer=Writer(), description=description)
if __name__ == '__main__':
main()
|