[py-svn] r37016 - py/dist/py/rest

cfbolz at codespeak.net cfbolz at codespeak.net
Fri Jan 19 17:29:35 CET 2007


Author: cfbolz
Date: Fri Jan 19 17:29:33 2007
New Revision: 37016

Modified:
   py/dist/py/rest/latex.py
Log:
another missing quote


Modified: py/dist/py/rest/latex.py
==============================================================================
--- py/dist/py/rest/latex.py	(original)
+++ py/dist/py/rest/latex.py	Fri Jan 19 17:29:33 2007
@@ -122,7 +122,7 @@
     if stylesheet is not None:
         sty = path.join(stylesheet)
         if sty.check():
-             options.append("--stylesheet=%s" % (sty, ))
+             options.append('--stylesheet="%s"' % (sty, ))
     options.append(f.new(basename=tex))
     options = map(str, options)
     if rest_options is not None:



More information about the pytest-commit mailing list