forked from OSchip/llvm-project
Import sys in repo.py.
The find function in repo.py calls sys.exit on error. Without this import that call to exit will fail, masking the actual error message. This patch fixes that. llvm-svn: 302584
This commit is contained in:
parent
b483e28c77
commit
a088f2fbcc
|
@ -3,6 +3,7 @@ import os
|
|||
import re
|
||||
import shutil
|
||||
import subprocess
|
||||
import sys
|
||||
|
||||
def identifier():
|
||||
try:
|
||||
|
|
Loading…
Reference in New Issue