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.
|
||||
# Also ensure QString is converted to unicode().
|
||||
args = [unicode(x).strip('/') for x in args]
|
||||
url = urlparse.urljoin(base, '/'.join(args))
|
||||
print url
|
||||
return url
|
||||
return urlparse.urljoin(base, '/'.join(args))
|
||||
|
||||
|
||||
def split_filename(path):
|
||||
|
Loading…
Reference in New Issue
Block a user