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:
authorJoshua Leung <aligorith@gmail.com>2012-11-06 03:13:09 +0400
committerJoshua Leung <aligorith@gmail.com>2012-11-06 03:13:09 +0400
commit2638728bd22d682e38d7eac2eb0a4b85edd3ff39 (patch)
treeb0e2a24cb876485393afca81606f3a5f5f5cfd6e /intern/cycles/blender
parent2d7598693e0045049f83957e74037ad328d1dcfd (diff)
Bugfix: Missing ')' broke Cycles addon
Diffstat (limited to 'intern/cycles/blender')
-rw-r--r--intern/cycles/blender/addon/enums.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/intern/cycles/blender/addon/enums.py b/intern/cycles/blender/addon/enums.py
index dd7a555c2a8..dfc13ec7333 100644
--- a/intern/cycles/blender/addon/enums.py
+++ b/intern/cycles/blender/addon/enums.py
@@ -58,6 +58,5 @@ aperture_types = (
panorama_types = (
('EQUIRECTANGULAR', "Equirectangular", "Render the scene with a spherical camera, also known as Lat Long panorama"),
('FISHEYE_EQUIDISTANT', "Fisheye Equidistant", "Ignore the sensor dimensions"),
- ('FISHEYE_EQUISOLID', "Fisheye Equisolid", "Similar to most fisheye modern lens, take sensor dimensions into consideration. For fulldomes use it with a square sensor ratio",
+ ('FISHEYE_EQUISOLID', "Fisheye Equisolid", "Similar to most fisheye modern lens, take sensor dimensions into consideration. For fulldomes use it with a square sensor ratio"),
)
-