Changeset 65732 in vbox for trunk/src/VBox/ValidationKit/testmanager
- Timestamp:
- Feb 10, 2017 1:37:24 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 113446
- Location:
- trunk/src/VBox/ValidationKit/testmanager/core
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/core/schedulerbase.py
r65034 r65732 1022 1022 sPreReqSet = '' 1023 1023 if len(dPreReqs) > 0: 1024 for idPreReq in sorted(dPreReqs .keys()):1024 for idPreReq in sorted(dPreReqs): 1025 1025 sPreReqSet += ', (' + str(idPreReq) + ')'; 1026 1026 sPreReqSet = sPreReqSet[2:]; # drop the leading ', '. -
trunk/src/VBox/ValidationKit/testmanager/core/webservergluecgi.py
r62484 r65732 31 31 32 32 # Standard python imports. 33 import cgi;34 33 import cgitb; 35 34 import os; 36 35 import sys; 36 import cgi; 37 37 38 38 # Validation Kit imports.
Note:
See TracChangeset
for help on using the changeset viewer.