Bug #1160506 - remove print statement.

This commit is contained in:
Martin Zibricky 2013-04-11 12:06:44 +02:00
parent 1c4c2e3636
commit 576524b873
1 changed files with 1 additions and 3 deletions

View File

@ -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):