Fix previous merge.

This commit is contained in:
Valentin Lorentz 2014-01-03 17:15:32 +00:00
parent 492a5ac04c
commit 4a9d3ccd3e
1 changed files with 2 additions and 1 deletions

View File

@ -165,7 +165,8 @@ class _PluginInternationalization:
except (IOError, PluginNotFound): # The translation is unavailable
pass
finally:
translationFile.close()
if 'translationFile' in locals():
translationFile.close()
def _parse(self, translationFile):
"""A .po files parser.