[javascriptlint-commit] SF.net SVN: javascriptlint:[356] trunk/javascriptlint/conf.py
Status: Beta
Brought to you by:
matthiasmiller
|
From: <mat...@us...> - 2016-12-23 20:47:17
|
Revision: 356
http://sourceforge.net/p/javascriptlint/code/356
Author: matthiasmiller
Date: 2016-12-23 20:47:15 +0000 (Fri, 23 Dec 2016)
Log Message:
-----------
Fix "conf" setting in unit tests.
Modified Paths:
--------------
trunk/javascriptlint/conf.py
Modified: trunk/javascriptlint/conf.py
===================================================================
--- trunk/javascriptlint/conf.py 2016-12-23 20:45:40 UTC (rev 355)
+++ trunk/javascriptlint/conf.py 2016-12-23 20:47:15 UTC (rev 356)
@@ -180,11 +180,13 @@
wants_parm = True
wants_dir = True
def __init__(self, conf):
+ self.value = None
self._conf = conf
def load(self, enabled, parm, dir):
if dir:
parm = os.path.join(dir, parm)
self._conf.loadfile(parm)
+ self.value = parm
class Conf:
def __init__(self):
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|