Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2013-11-15 00:48:09 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-11-15 00:48:24 +0400
commitce3f2bfae5d50bfd1c2ea732f3f1dc2cb0aa451b (patch)
tree941ff7c6a0c5cefe978e62b2ab00764eeece60d2 /io_curve_svg
parentbfa70771ded56cc2a0eb5332f1b9a662701c49e7 (diff)
Code cleanup: multiple spaces around keyword
Diffstat (limited to 'io_curve_svg')
-rw-r--r--io_curve_svg/import_svg.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_curve_svg/import_svg.py b/io_curve_svg/import_svg.py
index 0965b26b..1b62ac1e 100644
--- a/io_curve_svg/import_svg.py
+++ b/io_curve_svg/import_svg.py
@@ -95,7 +95,7 @@ def SVGParseFloat(s, i=0):
raise Exception('Invalid float value near ' + s[start:start + 10])
# Degree
- if i < n and (s[i] == 'e' or s[i] == 'E'):
+ if i < n and (s[i] == 'e' or s[i] == 'E'):
token += s[i]
i += 1
if s[i] == '+' or s[i] == '-':
@@ -670,7 +670,7 @@ class SVGPathParser:
self._point = (x, y)
cur = self._data.cur()
- while cur is not None and not cur.isalpha():
+ while cur is not None and not cur.isalpha():
x, y = self._getCoordPair(relative, self._point)
if self._spline is None: