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:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]