diff options
| author | fstarr <fstarr@users.noreply.github.com> | 2017-06-29 08:53:12 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-29 08:53:12 +0200 |
| commit | bd5dfd1f5129a721cfb2de8d11f691f5925e3542 (patch) | |
| tree | ad5f081ec7b38810f1f68f6d1fb44aa6854849aa | |
| parent | 0702ee84b2c4b4a32376b1da11af80c9296262ad (diff) | |
| download | pymba-bd5dfd1f5129a721cfb2de8d11f691f5925e3542.tar.gz pymba-bd5dfd1f5129a721cfb2de8d11f691f5925e3542.zip | |
Update vimbadll.py
Changed old style `print` statement to Python 3 compatible version.
| -rw-r--r-- | pymba/vimbadll.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pymba/vimbadll.py b/pymba/vimbadll.py index 1ae7773..8dd7e81 100644 --- a/pymba/vimbadll.py +++ b/pymba/vimbadll.py @@ -44,7 +44,7 @@ else: [1:-3]) vimbaC_path = "/" + vimba_dir + "/VimbaC/DynamicLib/x86_64bit/libVimbaC.so" elif 'x86_32' in os.uname()[4]: - print "Warning: x86_32 reached!" + print("Warning: x86_32 reached!") assert os.environ.get( "GENICAM_GENTL32_PATH"), "you need your GENICAM_GENTL32_PATH environment set. Make sure you have Vimba installed, and you have loaded the /etc/profile.d/ scripts" vimba_dir = "/".join(os.environ.get("GENICAM_GENTL32_PATH").split("/") |
