1
0
mirror of https://github.com/MarkParker5/STARK.git synced 2024-11-24 08:12:13 +02:00

rename RPi to Raspi

This commit is contained in:
MarkParker5 2020-11-28 08:16:30 +02:00
parent e9d482e9ba
commit 9340421e87

View File

@ -1,4 +1,4 @@
from .RPi import *
from .Raspi import *
import os
from Command import Callback
import config
@ -15,7 +15,7 @@ def reboot(params):
reboot_cb = Callback(['$bool',])
reboot_cb.setStart(reboot)
@RPi.background(answer = 'Проверяю обновления...', voice = 'Проверяю обновления')
@Raspi.background(answer = 'Проверяю обновления...', voice = 'Проверяю обновления')
def method(params, finish_event):
os.system('git -C '+config.path+' remote update')
if not 'git pull' in os.popen('git -C '+config.path+' status -uno').read():
@ -35,5 +35,5 @@ def method(params, finish_event):
}
patterns = ['* обновись *', '* можешь обновиться *', '* обнови себя *', '* скачай обновлени* *', '* провер* обновлени* *']
gitpull = RPi('git pull archie.git', [], patterns)
gitpull = Raspi('git pull archie.git', [], patterns)
gitpull.setStart(method)