diff options
| author | Robert Collins <robertc@robertcollins.net> | 2012-05-08 07:36:05 +1200 |
|---|---|---|
| committer | Robert Collins <robertc@robertcollins.net> | 2012-05-08 07:36:05 +1200 |
| commit | 974cb83973f69591502d2aad968b31edb234ccc2 (patch) | |
| tree | 6a52b2a29c9c5bd5cddc58f55d50418bf53283f8 /python/subunit/tests/sample-two-script.py | |
| parent | ab9e87a042a19081b7371baedfc0ff1eb5b86349 (diff) | |
| download | subunit-974cb83973f69591502d2aad968b31edb234ccc2.tar.gz | |
* Python3 support regressed in trunk.
(Arfrever Frehtes Taifersar Arahesis, #987514)
Diffstat (limited to 'python/subunit/tests/sample-two-script.py')
| -rwxr-xr-x | python/subunit/tests/sample-two-script.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/python/subunit/tests/sample-two-script.py b/python/subunit/tests/sample-two-script.py index d555084..fc73dfc 100755 --- a/python/subunit/tests/sample-two-script.py +++ b/python/subunit/tests/sample-two-script.py @@ -1,7 +1,7 @@ #!/usr/bin/env python import sys -print "test old mcdonald" -print "success old mcdonald" -print "test bing crosby" -print "success bing crosby" +print("test old mcdonald") +print("success old mcdonald") +print("test bing crosby") +print("success bing crosby") sys.exit(0) |
