From f72e3c5d02b5d8c2272359b2bd6cd4963ddfe9cb Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Wed, 11 Sep 2013 12:41:51 +0200 Subject: catch indexerror on first utility --- changes/bug_fix-first | 1 + src/leap/bitmask/util/__init__.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 changes/bug_fix-first diff --git a/changes/bug_fix-first b/changes/bug_fix-first new file mode 100644 index 00000000..0ef5188c --- /dev/null +++ b/changes/bug_fix-first @@ -0,0 +1 @@ + o Catch IndexError on `first` utility. diff --git a/src/leap/bitmask/util/__init__.py b/src/leap/bitmask/util/__init__.py index 6dd18bcf..78efcb6e 100644 --- a/src/leap/bitmask/util/__init__.py +++ b/src/leap/bitmask/util/__init__.py @@ -27,7 +27,7 @@ def first(things): """ try: return things[0] - except TypeError: + except (IndexError, TypeError): return None -- cgit v1.2.3