Hi, I am implementing some CLI commands using python. Some functions could be reused in multiple commands and so I put them into a separate file named src/cli/cli_utils.py. I also have extended src/Makefile.am to include the new CLI commands, which are copied to the deployment directory under bin/ successfully. However, when executing the CLI commands that refer to functions in cli_utils.py, it failed with ImportError: No module named cli_utils.
What else do I need to do such that python could find this module? Thanks, Du
