From 0cdd5aca2e707194bf1108fef15a63a65fd0524b Mon Sep 17 00:00:00 2001 From: Kristaps Kaupe Date: Wed, 8 Jan 2020 20:34:41 +0200 Subject: [PATCH] Add missing space to "matplotlib not found" error message --- scripts/obwatch/ob-watcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/obwatch/ob-watcher.py b/scripts/obwatch/ob-watcher.py index 28a1fbf..0263140 100644 --- a/scripts/obwatch/ob-watcher.py +++ b/scripts/obwatch/ob-watcher.py @@ -28,7 +28,7 @@ try: matplotlib.use('Agg') import matplotlib.pyplot as plt except: - print("matplotlib not found; do `pip install matplotlib`" + print("matplotlib not found; do `pip install matplotlib` " "in the joinmarket virtualenv.") sys.exit(EXIT_FAILURE)