--- a/hgkw/keyword.py Fri Oct 21 12:07:27 2011 +0100
+++ b/hgkw/keyword.py Mon Oct 24 17:02:10 2011 +0100
@@ -86,7 +86,7 @@
from mercurial import scmutil
from mercurial.hgweb import webcommands
from mercurial.i18n import _
-import os, re, shutil, tempfile
+import re, shutil, tempfile
commands.optionalrepo += ' kwdemo'
@@ -647,7 +647,7 @@
source = repo.dirstate.copied(dest)
if 'l' in wctx.flags(source):
source = scmutil.canonpath(repo.root, cwd,
- os.path.realpath(source))
+ util.realpath(source))
return kwt.match(source)
candidates = [f for f in repo.dirstate.copies() if
--- a/tests/run-tests.py Fri Oct 21 12:07:27 2011 +0100
+++ b/tests/run-tests.py Mon Oct 24 17:02:10 2011 +0100
@@ -1129,6 +1129,8 @@
os.environ['COLUMNS'] = '80'
os.environ['GREP_OPTIONS'] = ''
os.environ['http_proxy'] = ''
+ os.environ['no_proxy'] = ''
+ os.environ['NO_PROXY'] = ''
# unset env related to hooks
for k in os.environ.keys():