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:
Diffstat (limited to 'rigify/utils.py')
-rw-r--r--rigify/utils.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/rigify/utils.py b/rigify/utils.py
index 311ef24d..d9135271 100644
--- a/rigify/utils.py
+++ b/rigify/utils.py
@@ -21,7 +21,6 @@ import imp
import random
import time
from mathutils import Vector
-from math import ceil, floor
from rna_prop_ui import rna_idprop_ui_prop_get
RIG_DIR = "rigs" # Name of the directory where rig types are kept
@@ -386,7 +385,7 @@ def copy_attributes(a, b):
and key != "bl_rna":
try:
setattr(b, key, getattr(a, key))
- except AttributeError as e:
+ except AttributeError:
pass