From 033b979471597c0c90e7bb13ee61fe7f069efb01 Mon Sep 17 00:00:00 2001 From: Philip Eisenlohr Date: Fri, 17 Jan 2014 01:37:01 +0000 Subject: [PATCH] corrected __slots__ class variable --- lib/damask/environment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/damask/environment.py b/lib/damask/environment.py index 756ea32c5..2d8700237 100644 --- a/lib/damask/environment.py +++ b/lib/damask/environment.py @@ -5,7 +5,7 @@ import os,sys,string,re,subprocess,shlex class Environment(): __slots__ = [ \ 'rootRelation', - 'pathInfo', + 'options', ] def __init__(self,rootRelation = '.'):