blob: 6c45f874ce56dc51ebdb78e983659c5d28701feb [file] [log] [blame]
#!/usr/bin/python
"""Fake upload-logs-and-wait implementation."""
UPLOADED = False
def call():
global UPLOADED
UPLOADED = True
return 0, ''
def uploaded_logs():
global UPLOADED
result = UPLOADED
UPLOADED = False
return result