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>2018-07-03 23:35:37 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-07-03 23:35:37 +0300
commit969111f9b5b075470a6de995f048d19e25c1b9ea (patch)
tree48207cac4048961554748c8b7140b7823a09d2e2 /release
parenteb7286bfd2f8dc21cbd019b9085489652c392eba (diff)
Cleanup: pep8
Diffstat (limited to 'release')
-rw-r--r--release/scripts/modules/bpy/utils/__init__.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/release/scripts/modules/bpy/utils/__init__.py b/release/scripts/modules/bpy/utils/__init__.py
index c3175f93f4e..5e5a35b9518 100644
--- a/release/scripts/modules/bpy/utils/__init__.py
+++ b/release/scripts/modules/bpy/utils/__init__.py
@@ -488,11 +488,11 @@ def smpte_from_frame(frame, fps=None, fps_base=None):
return (
"%s%02d:%02d:%02d:%02d" % (
- sign,
- int(frame / (3600 * fps)), # HH
- int((frame / (60 * fps)) % 60), # MM
- int((frame / fps) % 60), # SS
- int(frame % fps), # FF
+ sign,
+ int(frame / (3600 * fps)), # HH
+ int((frame / (60 * fps)) % 60), # MM
+ int((frame / fps) % 60), # SS
+ int(frame % fps), # FF
))
@@ -773,6 +773,7 @@ def _blender_default_map():
del _sys.modules["rna_manual_reference"]
return ret
+
# hooks for doc lookups
_manual_map = [_blender_default_map]