From 17420be917de5054676448e92f5f19dea3aebce5 Mon Sep 17 00:00:00 2001 From: Scott Lawrence Date: Thu, 2 Apr 2015 10:34:51 -0400 Subject: [PATCH] fix for Issue #75: add the --themes-dir to the module import path --- colout/colout.py | 1 + 1 file changed, 1 insertion(+) diff --git a/colout/colout.py b/colout/colout.py index 2d232ba..c68c948 100755 --- a/colout/colout.py +++ b/colout/colout.py @@ -215,6 +215,7 @@ def load_themes( themes_dir): global context logging.debug("search for themes in: %s" % themes_dir) os.chdir( themes_dir ) + sys.path.append( themes_dir ) # load available themes for f in glob.iglob("colout_*.py"):