Skip to content

Commit

Permalink
changed default cli api url to be prod
Browse files Browse the repository at this point in the history
  • Loading branch information
kadenlnelson committed Feb 28, 2019
1 parent 014beb2 commit 442f017
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions realvalidation/argparser.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .constants import DESCRIPTION, MOCK_DNC_URL, VERSION
from .constants import DESCRIPTION, PROD_DNC_URL, VERSION
import argparse
import os
import sys
Expand Down Expand Up @@ -27,8 +27,8 @@ def error(self, message):

parser.add_argument('--api-url', '-au',
help='real validation api_url; defaults to {}'
.format(MOCK_DNC_URL),
default=MOCK_DNC_URL,
.format(PROD_DNC_URL),
default=PROD_DNC_URL,
)

parser.add_argument('--staging',
Expand Down

0 comments on commit 442f017

Please sign in to comment.