Skip to content

Commit

Permalink
Update modify_network.py
Browse files Browse the repository at this point in the history
  • Loading branch information
yunjunz committed Oct 9, 2024
1 parent 20faaa0 commit 06987a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mintpy/cli/modify_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,10 @@ def cmd_line_parse(iargs=None):
# check: --ex-date(12) options
# and ignore , in the inputs
if inps.excludeDate:
inps.excludeDate = [x.replace(',', '') for x in inps.excludeDate]
inps.excludeDate = ' '.join(inps.excludeDate).replace(',', ' ').split()
inps.excludeDate = ptime.yyyymmdd(inps.excludeDate)
if inps.excludeDate12:
inps.excludeDate12 = [x.replace(',', '') for x in inps.excludeDate12]
inps.excludeDat12e = ' '.join(inps.excludeDate12).replace(',', ' ').split()
inps.excludeDate12 = ptime.yyyymmdd_date12(inps.excludeDate12)

# check: -t / --template option
Expand Down

0 comments on commit 06987a4

Please sign in to comment.