Skip to content

Commit

Permalink
Added success message to post processing script
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Dlesk committed Dec 23, 2011
1 parent f063356 commit d3ee9ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Gamez.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,13 @@ def GenerateSabPostProcessScript():
file.write("\n")
file.write('url = "' + gamezBaseUrl + 'updatestatus?game_id=" + gamezID + "&status=" + downloadStatus')
file.write("\n")
file.write("print('Calling URL: ' + url)")
file.write("\n")
file.write('responseObject = urllib.FancyURLopener({}).open(url)')
file.write("\n")
file.write('responseObject.read()')
file.write("\n")
file.write('responseObject.close()')
file.write("\n")
file.write('print("Processing Completed Successfully")')
file.close

def RunGameTask():
Expand Down

0 comments on commit d3ee9ba

Please sign in to comment.