Skip to content

Commit

Permalink
Merge pull request grpc#7432 from thinkerou/fix_undefined_name
Browse files Browse the repository at this point in the history
Fix undefined name found by pyflakes.
  • Loading branch information
nathanielmanistaatgoogle authored Feb 8, 2017
2 parents f0ef224 + 2b43481 commit 87562c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/python/grpcio_tests/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
"""Provides distutils command classes for the gRPC Python setup process."""

import distutils
from distutils import errors as _errors
import glob
import os
import os.path
Expand Down Expand Up @@ -186,7 +186,7 @@ def initialize_options(self):

def finalize_options(self):
if self.client and self.server:
raise DistutilsOptionError(
raise _errors.DistutilsOptionError(
'you may only specify one of client or server')

def run(self):
Expand Down

0 comments on commit 87562c8

Please sign in to comment.