diff options
author | Patrick Sisterhen <patrick.sisterhen@ni.com> | 2014-10-15 18:17:29 -0500 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2014-10-16 21:08:01 +0200 |
commit | ab46ea0412acbf97a4f8e37e97e768e46ee8586d (patch) | |
tree | 41ff247b98fe417de43ae33b73026a32644fe8ae /images | |
parent | e906c610cc95c1df58ffd4b05f56153643f38b0b (diff) | |
download | uhd-ab46ea0412acbf97a4f8e37e97e768e46ee8586d.tar.gz uhd-ab46ea0412acbf97a4f8e37e97e768e46ee8586d.tar.bz2 uhd-ab46ea0412acbf97a4f8e37e97e768e46ee8586d.zip |
Adding explicit positional arguments to .format strings for compatibility with older Pythons
Diffstat (limited to 'images')
-rwxr-xr-x | images/populate_images.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/images/populate_images.py b/images/populate_images.py index 1ffc9081b..be204e4a0 100755 --- a/images/populate_images.py +++ b/images/populate_images.py @@ -40,7 +40,7 @@ def main(): img_root_dir = os.path.join(uhdimgs.get_images_dir(), 'images') os.chdir(uhdimgs.get_images_dir()) # Read out the CMakeLists.txt file, get filename - print "== Reading MD5 and ZIP filename for current commit from {}...".format(uhdimgs.get_cmake_main_file()) + print "== Reading MD5 and ZIP filename for current commit from {0}...".format(uhdimgs.get_cmake_main_file()) (md5, filename) = get_md5_and_zipfilename() print "== Starting download..." try: |