[blivet] Don't translate format names

David Shea dshea at redhat.com
Thu Dec 19 19:38:11 UTC 2013


Until we get a better answer for whether or not this even makes sense,
leave format names untranslated to avoid problems with all the code that
expects untranslated format names.
---
 blivet/formats/__init__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/blivet/formats/__init__.py b/blivet/formats/__init__.py
index 5e0ea32..a0e6767 100644
--- a/blivet/formats/__init__.py
+++ b/blivet/formats/__init__.py
@@ -251,7 +251,7 @@ class DeviceFormat(object):
     @property
     def name(self):
         if self._name:
-            name = _(self._name)
+            name = self._name
         else:
             name = self.type
         return name
-- 
1.8.4.2



More information about the anaconda-patches mailing list