diff options
author | Shwetha K Acharya <sacharya@redhat.com> | 2018-12-10 13:45:34 +0530 |
---|---|---|
committer | Amar Tumballi <amarts@redhat.com> | 2019-02-02 03:08:45 +0000 |
commit | 23e530a135fc419fba401448290f8b1809e23f53 (patch) | |
tree | eb5d6e263ed151ae99f0c4c6ef82b6d8a094fc94 /tools/glusterfind/glusterfind.in | |
parent | a229ee1c8cdf8e0ac1abaeb60cabe6ab08f60546 (diff) |
glusterfind: python2 to python3 compat
Made necessary modifications to ensure python3 compatibilty.
fixes: bz#1658116
Change-Id: I5cf1d0447eaf3c44eb444245d1f67aadd60705c3
Signed-off-by: Shwetha K Acharya <sacharya@redhat.com>
Diffstat (limited to 'tools/glusterfind/glusterfind.in')
-rw-r--r-- | tools/glusterfind/glusterfind.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/glusterfind/glusterfind.in b/tools/glusterfind/glusterfind.in index 79f06faeae0..569bf412105 100644 --- a/tools/glusterfind/glusterfind.in +++ b/tools/glusterfind/glusterfind.in @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python # Copyright (c) 2015 Red Hat, Inc. <http://www.redhat.com/> # This file is part of GlusterFS. @@ -10,6 +10,7 @@ import sys sys.path.insert(1, '@GLUSTERFS_LIBEXECDIR@/') +sys.path.insert(1, '@GLUSTERFS_LIBEXECDIR@/glusterfind') from glusterfind.main import main |