Changeset 69778 in vbox for trunk/src/VBox/ValidationKit/testmanager/db/gen-sql-comments.py
- Timestamp:
- Nov 20, 2017 5:57:01 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/db/gen-sql-comments.py
r69448 r69778 214 214 print(""); 215 215 for sLine in __copyright__.split('\n'): 216 print("-- %s" % (sLine,)); 216 if len(sLine) > 0: 217 print("-- %s" % (sLine,)); 218 else: 219 print("--"); 217 220 print(""); 218 221 print("");
Note:
See TracChangeset
for help on using the changeset viewer.