-
Notifications
You must be signed in to change notification settings - Fork 268
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Style and Temp file closing warning fix #682
Conversation
This is what it looks like on master: https://www.dropbox.com/s/9vsr067ag67c445/Screenshot%202016-08-07%2010.07.15.png?dl=0 This is what it looks like with this commit: https://www.dropbox.com/s/xr9ilbp6xeg0t7u/Screenshot%202016-08-07%2010.05.56.png?dl=0
Got this error without it: Configuration error: There is a syntax error in your configuration file: Non-ASCII character '\xe2' in file /home/travis/build/drvinceknight/Axelrod/axelrod/match.py on line 161, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details (match.py, line 161) make: *** [html] Error 1
Have opened marcharper#4 with a fix for the sphinx build. |
@@ -111,6 +111,8 @@ def play(self, build_results=True, filename=None, | |||
if build_results: | |||
return self._build_result_set(progress_bar=progress_bar, | |||
keep_interactions=keep_interactions) | |||
else: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hallelujah!
This looks great. Out of curiosity, did you use some automatic thing to do this or did you work through all the files yourself (Herculean effort it that's how you did it!)? 👍 |
Fix the sphinx build error.
Just the old fashioned way! |
👍 💪 This PR looks good to me. Nice clean up of things! |
@drvinceknight Two more commits, mostly cleaning up unused parameters for the tournament classes. |
👍 |
(Assuming Travis is happy with the sphinx build.) |
Re #681