Changes for the temp hugveys 27-29
This commit is contained in:
parent
8227cceffb
commit
afdc1f860d
3 changed files with 4 additions and 4 deletions
|
@ -94,7 +94,7 @@ chown=pi:pi
|
|||
|
||||
rsync them all
|
||||
```bash
|
||||
for i in {1..26}; do echo $i; rsync -av ~/hugvey/ pi@hugvey$i.local:/home/pi/hugvey/ --exclude=www --exclude=venv --exclude=local --exclude=*.pyc --exclude=.git --exclude=recordings --exclude=/voice* --exclude=/pd; done
|
||||
for i in {1..26}; do echo $i; rsync -av ~/hugvey/ pi@hugvey$i.local:/home/pi/hugvey/ --exclude=www --exclude=venv --exclude=local --exclude=*.pyc --exclude=.git --exclude=recordings --exclude=/voice* --exclude=/pd --exclude=Lanbox; done
|
||||
```
|
||||
|
||||
shut all of them down
|
||||
|
|
|
@ -416,7 +416,7 @@ class Condition(object):
|
|||
|
||||
d = story.get(self.vars['diversionId'])
|
||||
if not d:
|
||||
story.logger.critical(f"Condition on non-existing diversion: {self.vars['diversionId']}")
|
||||
story.logger.warning(f"Condition on non-existing diversion: {self.vars['diversionId']}")
|
||||
|
||||
r = d.hasHit
|
||||
if r:
|
||||
|
@ -471,7 +471,7 @@ class Condition(object):
|
|||
self.hasRan = True
|
||||
|
||||
if len(varValues) < number:
|
||||
story.logger.info(f"{self.id}: Too few instances of {self.vars['var_name']}")
|
||||
story.logger.critical(f"{self.id}: Too few instances of {self.vars['var_name']}, only {len(varValues)} in store")
|
||||
return False
|
||||
|
||||
for i in range(number):
|
||||
|
|
|
@ -182,4 +182,4 @@ checkbox.addEventListener('change', (event) => {
|
|||
}
|
||||
}
|
||||
|
||||
var tl = new Timeline(ws, document.getElementById('line'), 26);
|
||||
var tl = new Timeline(ws, document.getElementById('line'), 29);
|
||||
|
|
Loading…
Reference in a new issue