diff options
author | Jose <jose@zeroc.com> | 2016-09-21 16:17:55 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-09-21 16:17:55 +0200 |
commit | 1f190fd17a95113ee704519645f151691b8d6a55 (patch) | |
tree | c48db071fb10efb4b37a1d3086c0799481f6cef4 /python | |
parent | Fix ruby unicodePaths test to locate slice2rb (diff) | |
download | ice-1f190fd17a95113ee704519645f151691b8d6a55.tar.bz2 ice-1f190fd17a95113ee704519645f151691b8d6a55.tar.xz ice-1f190fd17a95113ee704519645f151691b8d6a55.zip |
install_dir fix for python3
Diffstat (limited to 'python')
-rw-r--r-- | python/config/install_dir | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/config/install_dir b/python/config/install_dir index 30aa11107b5..db924e4ff6f 100644 --- a/python/config/install_dir +++ b/python/config/install_dir @@ -32,4 +32,4 @@ try: except distutils.errors.DistutilsError: pass -print e.install_dir +print(e.install_dir) |