-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Baby Coder wrote: > Got it: > exclude_trees = ['gdp\xsr', 'gdp\sid', 'gdp\xam'] > > (This is Windows.)
That gives an error with Python (invalid \x escape). It would work if each string was raw (prefixed with r) or the backslashes were doubled up. See the escape sequence table at: http://docs.python.org/reference/lexical_analysis.html#string-literals Roger -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAkl2jt8ACgkQmOOfHg372QSeegCgxZmscTKppy2RtPjaJjyWCyQV xpEAn0ODIE3UGmixPL7lYaHdMdxQuVJx =NnkE -----END PGP SIGNATURE----- --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sphinx-dev" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sphinx-dev?hl=en -~----------~----~----~----~------~----~------~--~---
