mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-06 03:50:06 +01:00
Fix typos and trim whitespace
This commit is contained in:
@@ -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)
|
||||||
|
|
||||||
@@ -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 = '.'
|
||||||
|
|||||||
Reference in New Issue
Block a user