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:
authorCampbell Barton <ideasman42@gmail.com>2019-06-21 01:36:03 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-06-21 01:36:03 +0300
commitd2e474d043abf8eca750abc1475fd99b08a77a45 (patch)
tree35ecf8d7f7b9eee91d249dd6a79985b0a1d55723 /release/scripts/startup/bl_ui/space_image.py
parent91b8e24db3bce0d45203dcaf720bbbf472a59c1d (diff)
Cleanup: use trailing commas for multi-line arguments
Diffstat (limited to 'release/scripts/startup/bl_ui/space_image.py')
-rw-r--r--release/scripts/startup/bl_ui/space_image.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_image.py b/release/scripts/startup/bl_ui/space_image.py
index 1a0bc03dd38..2aba440bf1d 100644
--- a/release/scripts/startup/bl_ui/space_image.py
+++ b/release/scripts/startup/bl_ui/space_image.py
@@ -952,7 +952,7 @@ class IMAGE_PT_render_slots(Panel):
col = row.column()
col.template_list(
"IMAGE_UL_render_slots", "render_slots", ima,
- "render_slots", ima.render_slots, "active_index", rows=3
+ "render_slots", ima.render_slots, "active_index", rows=3,
)
col = row.column(align=True)