Skip to content

Commit

Permalink
Bug 1624190 - Try importing from collections.abc first; r=rstewart
Browse files Browse the repository at this point in the history
  • Loading branch information
nox committed Mar 23, 2020
1 parent c6af72b commit 296a3de
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@
import os
import sys
import textwrap
from collections import Iterable


try:
from collections.abc import Iterable
except ImportError:
from collections import Iterable


base_dir = os.path.abspath(os.path.dirname(__file__))
Expand Down

0 comments on commit 296a3de

Please sign in to comment.