dirstate: translate forgotten string
authorSimon Heimberg <simohe@besonet.ch>
Fri, 08 May 2009 07:54:00 +0200
changeset 8310 8417d82d3969
parent 8309 4ff63d699256
child 8311 e0eb03bfa5af
dirstate: translate forgotten string
mercurial/dirstate.py
--- a/mercurial/dirstate.py	Fri May 08 09:59:15 2009 +0200
+++ b/mercurial/dirstate.py	Fri May 08 07:54:00 2009 +0200
@@ -427,7 +427,7 @@
             badfn = match.bad
 
         def badtype(f, mode):
-            kind = 'unknown'
+            kind = _('unknown')
             if stat.S_ISCHR(mode): kind = _('character device')
             elif stat.S_ISBLK(mode): kind = _('block device')
             elif stat.S_ISFIFO(mode): kind = _('fifo')