From e82d51e161f639bdca41ff4a99e4c70008719c74 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Thu, 15 Jan 2015 02:03:26 +0100 Subject: [PATCH] Correct a path in memory check. --- scripts/memory_check.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/memory_check.py b/scripts/memory_check.py index e63c08fd..0ffe0682 100755 --- a/scripts/memory_check.py +++ b/scripts/memory_check.py @@ -12,7 +12,9 @@ Note: This requires the psutil library, available on PyPI. """ import time import sys +import os import psutil +sys.path.insert(0, os.path.abspath(os.path.dirname(__file__) + '/..')) import jedi