Fixed the tests

This commit is contained in:
kanikaa1234 2016-04-08 20:51:07 +05:30
parent 5c976d724b
commit a2bcf80aae

View File

@ -440,14 +440,11 @@ class CommandDispatcher:
window: Open the link in a new window. window: Open the link in a new window.
""" """
path = url.path() path = url.path()
#print (url.Qurl)
print (path)
if not path or path == '/': if not path or path == '/':
raise cmdexc.CommandError("Can't go up!") raise cmdexc.CommandError("Can't go up!")
new_path = posixpath.join(path, posixpath.pardir) new_path = posixpath.join(path, posixpath.pardir)
print (new_path)
url.setPath(new_path) url.setPath(new_path)
url.setFragment('') url.setFragment(None)
self._open(url, tab, background, window) self._open(url, tab, background, window)
@cmdutils.register(instance='command-dispatcher', scope='window') @cmdutils.register(instance='command-dispatcher', scope='window')