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:
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