Skip to content

Commit c65a0bd

Browse files
committed
Convert to Python 3 using 2to3
1 parent d3d06f3 commit c65a0bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

run_axelrod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
The code for strategies is present in `axelrod/strategies`.
66
"""
77

8-
from __future__ import division
8+
99
import argparse
1010
from axelrod import run_tournaments, setup_logging
1111

@@ -106,7 +106,7 @@ if __name__ == "__main__":
106106
args.exclude_ordinary,
107107
args.exclude_cheating,
108108
args.exclude_combined]):
109-
print "You've excluded everything - nothing for me to do"
109+
print("You've excluded everything - nothing for me to do")
110110
else:
111111
setup_logging(args.logging_destination, args.verbosity)
112112
# Unravel argparse Namespace object to python keyword arguments.

0 commit comments

Comments
 (0)