Milan Andric wrote:
>
> Furthermore I just did
>
> import sys
> sys.stderr.write(os.system(cmd))
> sys.stderr.flush()
>
> to see what the error message from the command is in the production
> server log.
>
>
Try using the subprocess module (Python 2.4+) to call your program instead
of os.system. os.system doesn't return an error message, it only returns the
exit code of the subprocess and doesn't give you any of the useful
information that the program may send to it's output and error pipes. With
the subprocess module you can pipe these to your own chlid_stdout and
child_stderr pipes, so you won't have to worry about trying to prevent your
subprocess from writing to stdout and messing up WSGI, etc.:
http://docs.python.org/lib/module-subprocess.html
--
View this message in context:
http://www.nabble.com/hanging-os.system%28%29-when-doing-pdf-generation-tp17483309p17502339.html
Sent from the django-users mailing list archive at Nabble.com.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---