Fixed typos in comments

This commit is contained in:
Justin Toft 2022-07-29 19:26:43 -04:00
parent 816c51a8f1
commit a7c87b9436
Signed by untrusted user who does not match committer: jtoft
GPG Key ID: F583036268C8DFF6
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 tp the parent directory
# The raspberry pi server doesn't use a relative path to the parent directory
if href.endswith("/") and href != "../" and href != "/" and href != "/debian/":
site_next = site+href+"Release"