Skip to content

Commit f4b2a0e

Browse files
committed
updated scripts for base_urls
1 parent 0f67124 commit f4b2a0e

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Diff for: obstools/scripts/atacr_download_data.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -259,16 +259,16 @@ def get_daylong_arguments(argv=None):
259259
args.endT = None
260260

261261
# Parse User Authentification
262-
if not len(args.UserAuth) == 0:
263-
tt = args.UserAuth.split(':')
262+
if not len(args.userauth) == 0:
263+
tt = args.userauth.split(':')
264264
if not len(tt) == 2:
265265
parser.error(
266266
"Error: Incorrect Username and Password Strings for " +
267267
"User Authentification")
268268
else:
269-
args.UserAuth = tt
269+
args.userauth = tt
270270
else:
271-
args.UserAuth = []
271+
args.userauth = []
272272

273273
# # Parse Local Data directories
274274
# if args.localdata is not None:

Diff for: obstools/scripts/atacr_download_event.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -292,16 +292,16 @@ def get_event_arguments(argv=None):
292292
args.endT = None
293293

294294
# Parse User Authentification
295-
if not len(args.UserAuth) == 0:
296-
tt = args.UserAuth.split(':')
295+
if not len(args.userauth) == 0:
296+
tt = args.userauth.split(':')
297297
if not len(tt) == 2:
298298
parser.error(
299299
"Error: Incorrect Username and Password Strings for User " +
300300
"Authentification")
301301
else:
302-
args.UserAuth = tt
302+
args.userauth = tt
303303
else:
304-
args.UserAuth = []
304+
args.userauth = []
305305

306306
if args.pre_filt is None:
307307
args.pre_filt = [0.001, 0.005, 45., 50.]

0 commit comments

Comments
 (0)