예제 #1
0
파일: isign.py 프로젝트: darmie/isign
def view(input_path):
    """ Obtain information about the app """
    try:
        return archive.view(input_path)
    except exceptions.NotSignable as e:
        raise NotSignable(e)
예제 #2
0
파일: isign.py 프로젝트: asionius/isign
def view(input_path):
    try:
        return archive.view(input_path)
    except exceptions.NotSignable as e:
        raise NotSignable(e)
예제 #3
0
파일: isign.py 프로젝트: 0x5e/isign
def view(input_path):
    try:
        return archive.view(input_path)
    except exceptions.NotSignable as e:
        raise NotSignable(e)
예제 #4
0
파일: isign.py 프로젝트: lianz/isign
def view(input_path):
    """ Obtain information about the app """
    try:
        return archive.view(input_path)
    except exceptions.NotSignable as e:
        raise NotSignable(e)