style: fix style hook when run from a repo subdir.
authorNathan Binkert <nate@binkert.org>
Tue, 21 Aug 2007 23:15:14 +0000 (16:15 -0700)
committerNathan Binkert <nate@binkert.org>
Tue, 21 Aug 2007 23:15:14 +0000 (16:15 -0700)
Before this fix, the style hook would blow up when you did a qrefresh to add
a new file, but executed the qrefresh from a repository sub directory.

--HG--
extra : convert_revision : 851b0421dfa5c5b23d0f49441c4ba2e0ac579c5d

util/style.py

index 866bef9b8f77fa70d16ac67fa30d7f15fdee7b6b..18b224f276a99142b7f73ddef5451decd1565ef6 100644 (file)
@@ -286,7 +286,7 @@ def check_whitespace(ui, repo, hooktype, node, parent1, parent2):
 
     for fname in added:
         ok = True
-        for line,num in checkwhite(fname):
+        for line,num in checkwhite(repo.wjoin(fname)):
             ui.write("invalid whitespace in %s:%d\n" % (fname, num))
             if verbose:
                 ui.write(">>%s<<\n" % line[-1])