Changeset 143:55ffa327e307
- Timestamp:
- 10/31/09 00:00:16 (4 years ago)
- Author:
- C?dric Krier <ced@…>
- Branch:
- default
- Message:
-
Let subprocess find texexec
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r140
|
r143
|
|
| 34 | 34 | from relatorio.reporting import MIMETemplateLoader |
| 35 | 35 | |
| 36 | | TEXEXEC_PATH = '/usr/bin/texexec' |
| | 36 | TEXEXEC = 'texexec' |
| 37 | 37 | _encode = genshi.output.encode |
| 38 | 38 | |
| … |
… |
|
| 58 | 58 | tex_file.close() |
| 59 | 59 | |
| 60 | | subprocess.check_call([TEXEXEC_PATH, '--purge', 'report.tex'], |
| | 60 | subprocess.check_call([TEXEXEC, '--purge', 'report.tex'], |
| 61 | 61 | cwd=self.working_dir) |
| 62 | 62 | |