Browse Source

mlstring: empty mlstring should be an empty string

ArnAud 9 years ago
parent
commit
50fb6fa1fd
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      Lodel/utils/mlstring.py

+ 4
- 1
Lodel/utils/mlstring.py View File

18
         self.translations[lang] = text
18
         self.translations[lang] = text
19
 
19
 
20
     def __str__(self):
20
     def __str__(self):
21
-        return json.dumps(self.translations)
21
+        if self.translations:
22
+            return json.dumps(self.translations)
23
+        else:
24
+            return ""
22
 
25
 
23
     @staticmethod
26
     @staticmethod
24
     def load(json_string):
27
     def load(json_string):

Loading…
Cancel
Save