diff options
| author | Marc Jeanmougin <marc@jeanmougin.fr> | 2016-10-08 16:05:13 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marcjeanmougin@free.fr> | 2016-10-08 16:05:13 +0000 |
| commit | 6092d5422b03608db00f18e6ad8c87465b5dc3e8 (patch) | |
| tree | 2ae791c03acda4ca0bf1cc2fb309a94c39cbd058 /share | |
| parent | [Bug #770681] KEY MAPPING: Comma and period hijacked by scaling. (diff) | |
| parent | Made the style-utils.h license dual-with-GPLv2+. (diff) | |
| download | inkscape-6092d5422b03608db00f18e6ad8c87465b5dc3e8.tar.gz inkscape-6092d5422b03608db00f18e6ad8c87465b5dc3e8.zip | |
merge trunk-refactoring
(bzr r15156)
Diffstat (limited to 'share')
| -rwxr-xr-x | share/extensions/text_sentencecase.py | 2 | ||||
| -rwxr-xr-x | share/extensions/text_titlecase.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/share/extensions/text_sentencecase.py b/share/extensions/text_sentencecase.py index 43460efc5..e699a7efa 100755 --- a/share/extensions/text_sentencecase.py +++ b/share/extensions/text_sentencecase.py @@ -6,7 +6,7 @@ class C(chardataeffect.CharDataEffect): sentence_start = True was_punctuation = False - def process_chardata(self,text, line, par): + def process_chardata(self, text, line, par): r = "" #inkex.debug(text+str(line)+str(par)) for c in text: diff --git a/share/extensions/text_titlecase.py b/share/extensions/text_titlecase.py index 1af0db26b..533ab1a39 100755 --- a/share/extensions/text_titlecase.py +++ b/share/extensions/text_titlecase.py @@ -5,7 +5,7 @@ class C(chardataeffect.CharDataEffect): word_ended = True - def process_chardata(self,text, line, par): + def process_chardata(self, text, line, par): r = "" for i in range(len(text)): c = text[i] |
