I get the following error when I try to run natlas-cli both on windows and Linux.
If i change os.listdir on line 119 to only contain './modules' everything works.
rael@fw:~/natlas$ python3 natlas-cli.py diagram -r 10.10.0.1 -o test.svg
natlas v0.11-dev6
Michael Laforest <mjlaforest@gmail.com>
Python 3.6.5
Traceback (most recent call last):
File "natlas-cli.py", line 306, in <module>
main(sys.argv[1:])
File "natlas-cli.py", line 76, in main
modules = load_modules()
File "natlas-cli.py", line 119, in load_modules
for f in os.listdir(working_dir + '/modules'):
FileNotFoundError: [Errno 2] No such file or directory: '/modules'
rael@fw:~/natlas$ ls
CHANGELOG LICENSE modules natlas-cli.py README.md
docs MANIFEST.in natlas natlas.conf setup.py
rael@fw:~/natlas$
I get the following error when I try to run natlas-cli both on windows and Linux. If i change os.listdir on line 119 to only contain './modules' everything works.
Great tool by the way.