diff options
| author | Shlomi Fish <shlomif@shlomifish.org> | 2016-09-23 13:03:34 +0000 |
|---|---|---|
| committer | Shlomi Fish <shlomif@shlomifish.org> | 2016-09-23 13:03:34 +0000 |
| commit | f7169083307dd418bf8daf75036be1c3129e11e7 (patch) | |
| tree | 38308d24c79a50119d49f25b4338f9b59faee3ce | |
| parent | Merged. (diff) | |
| download | inkscape-f7169083307dd418bf8daf75036be1c3129e11e7.tar.gz inkscape-f7169083307dd418bf8daf75036be1c3129e11e7.zip | |
Add missing space after a comma.
(bzr r15100.1.21)
| -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] |
