def _get_content(print_issue: PrintIssue, first_page=2, last_page=999) -> str:
    """Get full text of a pdf issue"""
    try:
        return print_issue.get_page_text_content(first_page, last_page)
    except Exception as e:
        logger.exception('Error reading pdf:')
        return ''