summaryrefslogtreecommitdiff
path: root/_test/roundtrip.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2018-08-08 17:38:43 +0200
committerAnthon van der Neut <anthon@mnt.org>2018-08-08 17:38:43 +0200
commitd68c914426b826ff9b076eb870aebdfdef5d82aa (patch)
tree7f00c92a3e5b6554f82197a79120494b77b5c3b3 /_test/roundtrip.py
parent65c335bcf426d4954c079eda2cc5414259bea4f9 (diff)
downloadruamel.yaml-d68c914426b826ff9b076eb870aebdfdef5d82aa.tar.gz
fix issue #124: incorrect tags for class methods
Diffstat (limited to '_test/roundtrip.py')
-rw-r--r--_test/roundtrip.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/_test/roundtrip.py b/_test/roundtrip.py
index 86e4862..c9b4ffb 100644
--- a/_test/roundtrip.py
+++ b/_test/roundtrip.py
@@ -228,7 +228,7 @@ def save_and_run(program, base_dir=None, file_name=None):
print('running:', *cmd)
check_output(cmd, stderr=STDOUT, universal_newlines=True)
except CalledProcessError as exception:
- print("##### Running '{} {}' FAILED #####".format(sys.exeutable, file_name))
+ print("##### Running '{} {}' FAILED #####".format(sys.executable, file_name))
print(exception.output)
return exception.returncode
return 0