Ejemplo n.º 1
0
Archivo: fetch.py Proyecto: tchx84/grtk
def _fetch_patches(id, chunk):
    issue = Issue(id)
    try:
        issue.get_attachments(chunk)
        print _success_message.format(issue._get_issue_path())
    except IssueError as err:
        print _failure_message.format(err.message)
        sys.exit(-1)
Ejemplo n.º 2
0
Archivo: fetch.py Proyecto: tchx84/grtk
def _fetch_patches(id, chunk):
    issue = Issue(id)
    try:
        issue.get_attachments(chunk)
        print _success_message.format(issue._get_issue_path())
    except IssueError as err:
        print _failure_message.format(err.message)
        sys.exit(-1)
Ejemplo n.º 3
0
Archivo: fetch.py Proyecto: aVolpe/grtk
def _fetch_patches(id, chunk):
    issue = Issue(id)
    try:
        issue.get_attachments(chunk)
    except Exception as err:
        print 'Stopped suddently: %s' % str(err)
Ejemplo n.º 4
0
Archivo: fetch.py Proyecto: aVolpe/grtk
def _fetch_patches(id, chunk):
    issue = Issue(id)
    try:
        issue.get_attachments(chunk)
    except Exception as err:
        print 'Stopped suddently: %s' % str(err)