HyukjinKwon commented on a change in pull request #29563:
URL: https://github.com/apache/spark/pull/29563#discussion_r479196585



##########
File path: dev/create-release/translate-contributors.py
##########
@@ -31,7 +31,10 @@
 import os
 import sys
 
-from releaseutils import *
+import unidecode

Review comment:
       I think we should do:
   
   ```python
   try:
       import unidecode
   except ImportError:
       print("This tool requires the unidecode library to decode obscure github 
usernames")
       print("Install using 'sudo pip install unidecode'")
       sys.exit(-1)
   ```
   
   to keep the same behaviour for now.




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to