python: Fix invalid varable/function references.
authorRussell Bryant <russell@ovn.org>
Fri, 11 Dec 2015 21:16:10 +0000 (16:16 -0500)
committerRussell Bryant <russell@ovn.org>
Tue, 5 Jan 2016 23:13:47 +0000 (18:13 -0500)
commite8049bc5e807bc7065462f60b703469915f8b4d5
tree5081d9db0cca3e6e7e778c6e2b471e0bc4ab2549
parent5697ca99019c1bf63a7df914554138b753fae886
python: Fix invalid varable/function references.

This code referred to "rows" where it meant to refer to "fetched_rows".
The patch resolves flake8 error:

  F821 undefined name 'rows'

python/build/nroff.py used a function fatal() that was not defined,
which raised the same type of error.

Signed-off-by: Russell Bryant <russell@ovn.org>
Acked-by: Ben Pfaff <blp@ovn.org>
Makefile.am
python/build/nroff.py
python/ovs/db/idl.py