Skip to content

Commit

Permalink
make example python3 compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
faroit committed Jun 30, 2016
1 parent a772b9f commit 8db74ce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/run_evaluation.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from __future__ import print_function
import dsdtools


Expand Down Expand Up @@ -25,7 +26,7 @@ def my_function(track):

# verify if my_function works correctly
if dsd.test(my_function):
print "my_function is valid"
print("my_function is valid")

dsd.run(
my_function,
Expand Down

0 comments on commit 8db74ce

Please sign in to comment.