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:
authorIan Thompson <quornian@googlemail.com>2008-07-21 15:21:49 +0400
committerIan Thompson <quornian@googlemail.com>2008-07-21 15:21:49 +0400
commit5435d7c3ea051bc7195d0c21ebc29a723222a795 (patch)
treebcd7c67e0280455491eccfc681b40c25364cdc9a /release
parentfab7270e4022ffa89fab3dc27e7f6cb6f92c357b (diff)
parent6352cd509e6e6f834684ec1e24c42e274a2ed31b (diff)
Oops, typo in rev. 15664 caused error
Diffstat (limited to 'release')
-rw-r--r--release/scripts/bpymodules/BPyTextPlugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/bpymodules/BPyTextPlugin.py b/release/scripts/bpymodules/BPyTextPlugin.py
index 1df095b8b35..e39d67aacee 100644
--- a/release/scripts/bpymodules/BPyTextPlugin.py
+++ b/release/scripts/bpymodules/BPyTextPlugin.py
@@ -350,7 +350,7 @@ def parse_text(txt):
close = line.find(')', end[1])
var_type = dict
if var_type and close+1 < len(line):
- if line[close]+1 != ' ' and line[close+1] != '\t':
+ if line[close+1] != ' ' and line[close+1] != '\t':
var_type = None
cls_vars[var_name] = VarDesc(var_name, var_type, start[0])
var1_step = 0