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:
Lang Hames 2017-05-09 20:37:01 +00:00
parent b483e28c77
commit a088f2fbcc
1 changed files with 1 additions and 0 deletions

View File

@ -3,6 +3,7 @@ import os
import re
import shutil
import subprocess
import sys
def identifier():
try: