This commit is contained in:
vabene1111
2018-05-06 21:33:24 +02:00
parent bc287364ac
commit 4be125353f
6 changed files with 45 additions and 12 deletions

View File

@ -12,7 +12,11 @@ def sync_all():
monitors = Monitor.objects.all()
for monitor in monitors:
import_all(monitor)
ret = import_all(monitor)
if not ret:
return ret
return True
def import_all(monitor):