Compare commits

..

No commits in common. "46b584d68bf61d303fc4d1a2db14b172b5530775" and "816c51a8f1113663ca271c390bf05ecc363f1a37" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -27,9 +27,9 @@ class DebianCD(Project):
if upstream == CSC:
return True
# Date Format Example: Sun 27 Mar 00:20:12 UTC 2022
date_format = "%a %d %b %H:%M:%S UTC %Y\n"
# Sun 27 Mar 00:20:12 UTC 2022
CSC_date = datetime.strptime(CSC, date_format)
CSC_utc_time = time.mktime(CSC_date.timetuple())

View File

@ -23,7 +23,7 @@ class raspberrypi(Project):
for i in s.find_all("a"): # for a href directories
href = i.attrs['href']
# The raspberry pi server doesn't use a relative path to the parent directory
# The raspberry pi server doesn't use a relative path tp the parent directory
if href.endswith("/") and href != "../" and href != "/" and href != "/debian/":
site_next = site+href+"Release"