Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2003-05-01 23:52:40 +0400
committerKent Mein <mein@cs.umn.edu>2003-05-01 23:52:40 +0400
commit16b3cd809af48a8288689a9cc16283b328ae430b (patch)
treee72d0127a0c0ce4a098c5c3e3ab56061b2b20585 /intern/python
parent19320c020cb89e45aa9179f5e89a51b8a44a3c16 (diff)
dos2unixed relivant stuff in the interndir.
I'll wait a couple of days and if no complaints do the other dirs as well. Kent
Diffstat (limited to 'intern/python')
-rw-r--r--intern/python/modules/TextTools/Constants/Sets.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/python/modules/TextTools/Constants/Sets.py b/intern/python/modules/TextTools/Constants/Sets.py
index bf260aa3e0c..5915a531b10 100644
--- a/intern/python/modules/TextTools/Constants/Sets.py
+++ b/intern/python/modules/TextTools/Constants/Sets.py
@@ -10,8 +10,8 @@ import string
a2z = 'abcdefghijklmnopqrstuvwxyz'
A2Z = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
-umlaute = 'äöüß'
-Umlaute = 'ÄÖÜ'
+umlaute = '„÷’ž'
+Umlaute = 'ýÙ›'
alpha = A2Z + a2z
german_alpha = A2Z + a2z + umlaute + Umlaute
number = '0123456789'