summaryrefslogtreecommitdiff
path: root/Code
diff options
context:
space:
mode:
Diffstat (limited to 'Code')
-rw-r--r--Code/download_and_map.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Code/download_and_map.py b/Code/download_and_map.py
index 93e3400..7bc0dee 100644
--- a/Code/download_and_map.py
+++ b/Code/download_and_map.py
@@ -156,7 +156,7 @@ def has_no_more_time(times):
first_time = times[0]
now_time = datetime.now()
time_diff = now_time - first_time
- if time_diff.total_seconds()/3600 > 18: # started 18 hours ago, should stop now, let the machine rest for 6 hours
+ if time_diff.total_seconds()/3600 > 8: # started 8 hours ago, should stop now, let the machine rest for 16 hours
return True
return False