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-08-18 18:16:34 +0400
committerIan Thompson <quornian@googlemail.com>2008-08-18 18:16:34 +0400
commite1ceab6ed68b6efef839f5f1b7adbd84c48279cd (patch)
tree6b5b5dc738e60c3ab76e3cf171fc85ad51d27625 /release
parentd39cdd7aad37891fed0885d525b58de17fad0a2f (diff)
Missed parentheses from except clause, has a whole different meaning.
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 751af641eb0..73b0109206a 100644
--- a/release/scripts/bpymodules/BPyTextPlugin.py
+++ b/release/scripts/bpymodules/BPyTextPlugin.py
@@ -265,7 +265,7 @@ def parse_text(txt):
type, text, start, end, line = tokens.next()
except StopIteration:
break
- except TokenError, IndentationError:
+ except (TokenError, IndentationError):
incomplete = True
break