diff options
author | Sandro Bonazzola <sandro.bonazzola@gmail.com> | 2017-03-29 09:37:05 +0200 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2017-03-31 15:53:49 +0100 |
commit | 8df3d15015796001845c676fc2606a9803da684d (patch) | |
tree | fb9f5a964800a71a543bae490b6de8aea27fee43 /tests | |
parent | 852398227be8f1c78c70e9e054cfdef3315f6d3b (diff) | |
download | sos-8df3d15015796001845c676fc2606a9803da684d.tar.gz |
[tests] update test_exe.py for python3
test_exe.py fails with nosetests-3.
Updated to python 3 compatible syntax.
Signed-off-by: Sandro Bonazzola <sbonazzo@redhat.com>
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/test_exe.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_exe.py b/tests/test_exe.py index 9b0af075..9607a04b 100755 --- a/tests/test_exe.py +++ b/tests/test_exe.py @@ -1,4 +1,4 @@ #!/usr/bin/python -print "executed" +print("executed") # vim: set et ts=4 sw=4 : |