Esempio n. 1
0
def startDump():
    """Launch the dumping process: parse the card and print the
    results."""
    card = card_interface.getCard()
    if not card is None:
        content = structure_parser.parseCard(card)
        display.prettyPrint(content)
Esempio n. 2
0
def startDump():
    card = card_interface.getCard()
    if card:
        content = structure_parser.parseCard(card)
        display.prettyPrint(content)