Changes between Initial Version and Version 1 of Ticket #442
- Timestamp:
- Aug 1, 2013, 3:19:07 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #442 – Description
initial v1 9 9 10 10 The batch process is using python subprocess like... 11 12 ... 11 {{{ 13 12 p3 = subprocess.Popen(rasimport,shell=True,stdout=subprocess.PIPE,stderr=subprocess.PIPE) 14 13 p3.wait() 15 ... 14 }}} 16 15 17 16 Where rasimport is something like: … … 26 25 27 26 27 28