Removed a pylint violation in the localization module.

This commit is contained in:
Adam Waldenberg 2013-07-10 16:45:46 +02:00
parent aeb55c5a3e
commit 84bb7bed2d
1 changed files with 2 additions and 1 deletions

View File

@ -28,7 +28,8 @@ __installed__ = False
__translation__ = None
#Dummy function used to handle string constants
def N_(message): return message
def N_(message):
return message
def init():
global __installed__