Skip to content

Commit

Permalink
corrected output: "pip3 install pymongo" for Python 3, "pip install
Browse files Browse the repository at this point in the history
pymongo" for Python 2

Change-Id: I34e630b8f76e51e794232ad5f121d2bfbfad0d32
  • Loading branch information
UlrichBschorer committed Feb 24, 2021
1 parent 161b1a1 commit 153d454
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agents/plugins/mk_mongodb.py
Expand Up @@ -35,7 +35,7 @@
except ImportError:
sys.stdout.write("<<<mongodb_instance:sep(9)>>>\n")
sys.stdout.write(
"error\tpymongo library is not installed. Please install it on the monitored system (pip install pymongo)\n"
"error\tpymongo library is not installed. Please install it on the monitored system (for Python 3 use: 'pip3 install pymongo', for Python 2 use 'pip install pymongo')\n"
)
sys.exit(1)

Expand Down

0 comments on commit 153d454

Please sign in to comment.