Ignore:
Timestamp:
10/18/19 06:52:19 (5 years ago)
Author:
bdef
Message:

BUG: fixing some negative number syntax

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/plot/processdata.py

    r24255 r24256  
    4646    # }}}
    4747    # {{{ process NaN's if any
    48     nanfill = options.getfieldvalue('nan', - 9999)
     48    nanfill = options.getfieldvalue('nan', -9999)
    4949    if np.any(np.isnan(procdata)):
    5050        lb = np.nanmin(procdata)
     
    130130    # {{{ convert rank - 2 array to rank - 1
    131131    if np.ndim(procdata) == 2 and np.shape(procdata)[1] == 1:
    132         procdata = procdata.reshape(- 1, )
     132        procdata = procdata.reshape(-1, )
    133133    # }}}
    134134    # {{{ if datatype is still zero, error out
Note: See TracChangeset for help on using the changeset viewer.