Skip to content

Commit

Permalink
Fixing flag name for db_file (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtlynch committed Mar 23, 2017
1 parent 69f92f3 commit f1e6a3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion greenpithumb/greenpithumb.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def create_record_processor(db_connection, record_queue):
def main(args):
record_queue = Queue.Queue()
with contextlib.closing(db_store.open_or_create_db(
args.data_file)) as db_connection:
args.db_file)) as db_connection:
record_processor = create_record_processor(db_connection, record_queue)
while True:
record_processor.process_next_record()
Expand Down

0 comments on commit f1e6a3e

Please sign in to comment.