diff options
author | Sunny Kumar <sunkumar@redhat.com> | 2018-10-09 12:43:32 +0530 |
---|---|---|
committer | Kotresh HR <khiremat@redhat.com> | 2018-10-09 18:11:39 +0000 |
commit | 8d4c5e022bba1b99786ce13f407c27024beccc23 (patch) | |
tree | b377f23fe3385ab6bd047464947066184b6c2e21 /extras/cliutils | |
parent | 73bb13e7bc45f5f5ce73302312f2094de1fee9a3 (diff) |
cliutils : python2 to python3 compat
This patch fixes import issue in cliutils.
Provided solution is to use relative import.
Change-Id: I14c9a0b528ef52e7c91f6b17b569c68c2ced8912
updates: #411
Signed-off-by: Sunny Kumar <sunkumar@redhat.com>
Diffstat (limited to 'extras/cliutils')
-rw-r--r-- | extras/cliutils/__init__.py | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/extras/cliutils/__init__.py b/extras/cliutils/__init__.py index 9c930982be0..8765cc85099 100644 --- a/extras/cliutils/__init__.py +++ b/extras/cliutils/__init__.py @@ -1,18 +1,18 @@ # -*- coding: utf-8 -*- # Reexporting the utility funcs and classes -from cliutils import (runcli, - sync_file_to_peers, - execute_in_peers, - execute, - node_output_ok, - node_output_notok, - output_error, - oknotok, - yesno, - get_node_uuid, - Cmd, - GlusterCmdException, - set_common_args_func) +from .cliutils import (runcli, + sync_file_to_peers, + execute_in_peers, + execute, + node_output_ok, + node_output_notok, + output_error, + oknotok, + yesno, + get_node_uuid, + Cmd, + GlusterCmdException, + set_common_args_func) # This will be useful when `from cliutils import *` |