From 4789c77936a634dc717f61309503f99a44b610ed Mon Sep 17 00:00:00 2001 From: Helmut Grohne Date: Sat, 21 May 2016 17:54:04 +0200 Subject: move from deprecated optparse to argparse --- readyaml.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'readyaml.py') diff --git a/readyaml.py b/readyaml.py index 2ef9a3b..b6f7316 100755 --- a/readyaml.py +++ b/readyaml.py @@ -2,7 +2,7 @@ """This tool reads a yaml file as generated by importpkg.py on stdin and updates the database with the contents.""" -import optparse +import argparse import sqlite3 import sys @@ -54,12 +54,12 @@ def readyaml(db, stream): raise ValueError("missing commit block") def main(): - parser = optparse.OptionParser() - parser.add_option("-d", "--database", action="store", - default="test.sqlite3", - help="path to the sqlite3 database file") - options, args = parser.parse_args() - db = sqlite3.connect(options.database) + parser = argparse.ArgumentParser() + parser.add_argument("-d", "--database", action="store", + default="test.sqlite3", + help="path to the sqlite3 database file") + args = parser.parse_args() + db = sqlite3.connect(args.database) readyaml(db, sys.stdin) if __name__ == "__main__": -- cgit v1.2.3