diff -r a53888685a6c -r c519cd8f0169 tests/test-hgwebdir-paths.py --- a/tests/test-hgwebdir-paths.py Fri Oct 28 15:00:21 2011 +0200 +++ b/tests/test-hgwebdir-paths.py Sat Oct 29 11:02:23 2011 -0500 @@ -1,11 +1,11 @@ import os -from mercurial import hg, ui, util +from mercurial import hg, ui from mercurial.hgweb.hgwebdir_mod import hgwebdir os.mkdir('webdir') os.chdir('webdir') -webdir = util.realpath('.') +webdir = os.path.realpath('.') u = ui.ui() hg.repository(u, 'a', create=1)