Fix typos and trim whitespace

This commit is contained in:
Robin Dunn
2019-12-31 14:13:20 -08:00
parent e88c385e14
commit e3ef0db163
2 changed files with 8 additions and 9 deletions

View File

@@ -113,4 +113,3 @@ cdef extern from 'nanosvgrast.h':
NSVGrasterizer* r, NSVGrasterizer* r,
NSVGimage* image, float tx, float ty, float scale, NSVGimage* image, float tx, float ty, float scale,
unsigned char* dst, int w, int h, int stride) unsigned char* dst, int w, int h, int stride)

View File

@@ -92,7 +92,7 @@ def get_save_path(url, dest_dir, force=False):
return (url, filename) return (url, filename)
def download_wget(url, filename, trusted=False): def download_wget(url, filename, trusted=False):
""" Try to donwload via wget.""" """ Try to download via wget."""
result = False result = False
try: try:
cmd = ["wget", url, '-O', filename] cmd = ["wget", url, '-O', filename]
@@ -107,7 +107,7 @@ def download_wget(url, filename, trusted=False):
return result return result
def download_urllib(url, filename): def download_urllib(url, filename):
""" Try to donwload via urllib.""" """ Try to download via urllib."""
print("Trying to Download via urllib from:\n ", url) print("Trying to Download via urllib from:\n ", url)
keep_going = True keep_going = True
try: try:
@@ -154,7 +154,7 @@ def download_urllib(url, filename):
return result return result
def download_pip(url, filename, force=False, trusted=False): def download_pip(url, filename, force=False, trusted=False):
""" Try to donwload via pip.""" """ Try to download via pip."""
download_dir = os.path.split(filename)[0] download_dir = os.path.split(filename)[0]
if len(download_dir) == 0: if len(download_dir) == 0:
download_dir = '.' download_dir = '.'