Omaha #3599 Fix typo in get_args() call.

Change-Id: I7ad64eb987c0162ae4f31b76cbc386d06daf2a91

Former-commit-id: 3916cf0e8b708bb0a6a5fde3208d1d0a77878a90
This commit is contained in:
Nathan Bowler 2014-11-17 11:05:23 -05:00
parent 9fde70a354
commit 595ea9686a

View file

@ -26,6 +26,7 @@
# Date Ticket# Engineer Description
# ------------ ---------- ----------- --------------------------
# 2014-10-22 3599 nabowle Initial modification. Convert to DAF.
# 2014-11-17 3599 nabowle Fix call to get_args().
#
import argparse
@ -54,7 +55,7 @@ def get_args():
return parser.parse_args()
def main():
user_args = get_args()()
user_args = get_args()
if user_args.host:
DataAccessLayer.changeEDEXHost(user_args.host)