diff options
author | Matt Wilson <msw@redhat.com> | 2001-07-09 16:29:06 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-07-09 16:29:06 +0000 |
commit | 3653b32efa9533bab5a6d091f705c8eb5e2d6a0e (patch) | |
tree | 95ba3959922e09502fc4b8bce34deea73a6c8fd6 /textw | |
parent | c7983460db54f7ee4da9f773e5108049adfcff36 (diff) | |
download | anaconda-3653b32efa9533bab5a6d091f705c8eb5e2d6a0e.tar.gz anaconda-3653b32efa9533bab5a6d091f705c8eb5e2d6a0e.tar.xz anaconda-3653b32efa9533bab5a6d091f705c8eb5e2d6a0e.zip |
don't translate empty strings
Diffstat (limited to 'textw')
-rw-r--r-- | textw/partition_text.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textw/partition_text.py b/textw/partition_text.py index 8b1c9f4f8..74a545427 100644 --- a/textw/partition_text.py +++ b/textw/partition_text.py @@ -538,7 +538,7 @@ class PartitionWindow: subgrid.setField(size, 1, 1, (0,1,0,0), anchorRight = 1) tmpLbl = Label(_("Filesystem Option:")) subgrid.setField(tmpLbl, 0, 2, (0,1,2,0), anchorLeft = 1) - fsoptLbl = Label(_("")) + fsoptLbl = Label("") subgrid.setField(fsoptLbl, 1, 2, (0,1,2,0), anchorLeft = 1) poplevel.add(subgrid, 0, row, (0,1,0,0)) |