aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/layers/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/layers/utils.py')
-rw-r--r--tensorflow/python/layers/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/python/layers/utils.py b/tensorflow/python/layers/utils.py
index e8be347799..7407d9a7b3 100644
--- a/tensorflow/python/layers/utils.py
+++ b/tensorflow/python/layers/utils.py
@@ -81,7 +81,7 @@ def normalize_tuple(value, n, name):
for single_value in value_tuple:
try:
int(single_value)
- except ValueError:
+ except (ValueError, TypeError):
raise ValueError('The `' + name + '` argument must be a tuple of ' +
str(n) + ' integers. Received: ' + str(value) + ' '
'including element ' + str(single_value) + ' of type' +