- Timestamp:
- 2011-07-01 09:53:41 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
2011/26/write_report.py
r2390 r2393 16 16 from datetime import * 17 17 import time 18 import re 18 19 20 21 hide_pong_games = False 19 22 20 23 report_location = "\\\\eppu.it.jyu.fi\\kurssit\\npo\\temp" … … 84 87 time_of_update = lines[3].strip() 85 88 89 if hide_pong_games and re.search("pong", name, flags=re.IGNORECASE): 90 continue 91 86 92 success = (result == "success") 87 93 … … 102 108 103 109 def main(): 110 if "--hide-pong" in sys.argv: 111 global hide_pong_games 112 hide_pong_games = True 113 104 114 try: 105 115 while True:
Note: See TracChangeset
for help on using the changeset viewer.