forked from openlp/openlp
Bug #1160506 - remove print statement.
This commit is contained in:
parent
1c4c2e3636
commit
576524b873
@ -379,9 +379,7 @@ def join_url(base, *args):
|
|||||||
# Remove leading and trailing slash from components.
|
# Remove leading and trailing slash from components.
|
||||||
# Also ensure QString is converted to unicode().
|
# Also ensure QString is converted to unicode().
|
||||||
args = [unicode(x).strip('/') for x in args]
|
args = [unicode(x).strip('/') for x in args]
|
||||||
url = urlparse.urljoin(base, '/'.join(args))
|
return urlparse.urljoin(base, '/'.join(args))
|
||||||
print url
|
|
||||||
return url
|
|
||||||
|
|
||||||
|
|
||||||
def split_filename(path):
|
def split_filename(path):
|
||||||
|
Loading…
Reference in New Issue
Block a user