notmuch/doc
W. Trevor King c3d54c4b54 doc/prerst2man.py: Fix 'os.system' -> 'system' typo
Avoid:

  $ make HAVE_SPHINX=0 HAVE_RST2MAN=1 build-man
  python ./doc/prerst2man.py ./doc doc/_build/man
  Traceback (most recent call last):
    File "./doc/prerst2man.py", line 65, in <module>
      os.system('set -x; rst2man {0} {1}/{2}.{3}'
  NameError: name 'os' is not defined
  make: *** [doc/_build/man/man1/notmuch.1] Error 1

by using system directly.  We don't need the 'os.' namespacing,
because the function was imported with:

  from os import makedirs, system
2014-04-21 21:32:03 +09:00
..
man1 doc: make notmuch-new summary line more generic 2014-04-19 14:29:06 +09:00
man5 doc: convert sphinx based docs 2014-03-09 10:41:08 -03:00
man7 man: update man pages for folder: and path: search terms 2014-03-11 19:51:22 -03:00
.gitignore doc: convert sphinx based docs 2014-03-09 10:41:08 -03:00
conf.py doc: automatically read version from file 2014-03-09 10:41:09 -03:00
doxygen.cfg doc: move doxgen config from devel/ to doc/ 2014-04-08 07:30:42 -03:00
index.rst doc: convert sphinx based docs 2014-03-09 10:41:08 -03:00
INSTALL doc: convert sphinx based docs 2014-03-09 10:41:08 -03:00
Makefile doc: convert sphinx based docs 2014-03-09 10:41:08 -03:00
Makefile.local doc: Fix parallel build of roff files 2014-04-19 05:55:30 +09:00
mkdocdeps.py doc/mkdocdeps.py: Use "with" statement for the output file 2014-04-21 21:31:45 +09:00
notmuch-emacs.rst doc: added 'Init File' section to notmuch-emacs info source 2014-04-08 07:31:32 -03:00
prerst2man.py doc/prerst2man.py: Fix 'os.system' -> 'system' typo 2014-04-21 21:32:03 +09:00