Replace elif list() > int() with else
authorDiane Trout <diane@ghic.org>
Mon, 2 Feb 2015 22:40:47 +0000 (14:40 -0800)
committerDiane Trout <diane@ghic.org>
Mon, 2 Feb 2015 22:40:47 +0000 (14:40 -0800)
the expression was always true under python2 and
is a syntax error in python3. Replacing it with
if len(list()) > 0 caused test case failures
so this seemed like the best idea.


No differences found