Skip to content
Snippets Groups Projects
Commit 87562c83 authored by Nathaniel Manista's avatar Nathaniel Manista Committed by GitHub
Browse files

Merge pull request #7432 from thinkerou/fix_undefined_name

Fix undefined name found by pyflakes.
parents f0ef2249 2b43481f
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
"""Provides distutils command classes for the gRPC Python setup process.""" """Provides distutils command classes for the gRPC Python setup process."""
import distutils from distutils import errors as _errors
import glob import glob
import os import os
import os.path import os.path
...@@ -186,7 +186,7 @@ class RunInterop(test.test): ...@@ -186,7 +186,7 @@ class RunInterop(test.test):
def finalize_options(self): def finalize_options(self):
if self.client and self.server: if self.client and self.server:
raise DistutilsOptionError( raise _errors.DistutilsOptionError(
'you may only specify one of client or server') 'you may only specify one of client or server')
def run(self): def run(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment