| Index: test/variables/commands/repeated_multidir/print_cwd_basename.py
|
| diff --git a/test/variables/commands/repeated_multidir/print_cwd_basename.py b/test/variables/commands/repeated_multidir/print_cwd_basename.py
|
| index ace9ed6b801409d58bcf1fdd62c851d123d9fe2a..9b206bb3d4319383ae2faadcf665774d8e4c8b1d 100755
|
| --- a/test/variables/commands/repeated_multidir/print_cwd_basename.py
|
| +++ b/test/variables/commands/repeated_multidir/print_cwd_basename.py
|
| @@ -4,7 +4,8 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| +from __future__ import print_function
|
| import os
|
| import os.path
|
|
|
| -print os.path.basename(os.getcwd())
|
| +print(os.path.basename(os.getcwd()))
|
|
|