Skip to content

Commit

Permalink
Bug fix: builder was not parsing maxOn setting
Browse files Browse the repository at this point in the history
Small oversight but it made it impossible to modify existing experiments.
  • Loading branch information
jfkominsky committed Jul 28, 2022
1 parent 837bd63 commit 0c4dc59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PyHab/PyHabBuilder.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def __init__(self, loadedSaved=False, settingsDict={}):
self.settings['maxOn'] = '{}'
# Settings requiring evaluation to get sensible values. Mostly dicts.
evalList = ['dataColumns','blockSum','trialSum','maxDur','condList','baseCondList','movieEnd','playThrough',
'trialOrder','stimNames', 'stimList', 'ISI', 'maxOff','minOn','durationCriterion','autoRedo',
'trialOrder','stimNames', 'stimList', 'ISI', 'maxOff','minOn', 'maxOn','durationCriterion','autoRedo',
'onTimeDeadline','autoAdvance','playAttnGetter','attnGetterList','trialTypes', 'nextFlash',
'blockList', 'dynamicPause','midAG','screenWidth','screenHeight','screenIndex','movieWidth',
'movieHeight', 'durationInclude', 'loadSep', 'hppStimScrOnly'] # in 0.9, this becomes necessary.
Expand Down

0 comments on commit 0c4dc59

Please sign in to comment.