salt/tests/integration/files/file/base/script.py
Craig Rodrigues 381e8cc144 Use print as a function [PEP 3105].
This reduces warnings from the 2to3 utility
and future proofs the code when it is time to move to Python 3.
2015-12-04 16:17:35 -08:00

6 lines
102 B
Python

#!/usr/bin/env python
from __future__ import print_function
import sys
print(' '.join(sys.argv[1:]))