mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-22 12:23:37 -05:00
Workaround code for James's problem with the Python rfind method; better
error message in ssort.f. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/trunk@43 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
6074556d20
commit
45caec5d23
8
g.py
8
g.py
@ -17,8 +17,14 @@ def ftnstr(x):
|
||||
#------------------------------------------------------ filetime
|
||||
def filetime(t):
|
||||
# i=t.rfind(".")
|
||||
i=6
|
||||
i=rfnd(t,".")
|
||||
t=t[:i][-6:]
|
||||
t=t[0:2]+":"+t[2:4]+":"+t[4:6]
|
||||
return t
|
||||
|
||||
#------------------------------------------------------ rfnd
|
||||
#Temporary workaround to replace t.rfind(c)
|
||||
def rfnd(t,c):
|
||||
for i in range(len(t)-1,0,-1):
|
||||
if t[i:i+1]==c: return i
|
||||
return -1
|
||||
|
3
ssort.f
3
ssort.f
@ -26,7 +26,8 @@ c = -2 means sort x in decreasing order and carry y along.
|
||||
|
||||
nn = n
|
||||
if (nn .lt. 1) then
|
||||
print *,'n = ',nn,' kflag = ',kflag,' in ssort.'
|
||||
print*,'ssort: The number of sort elements is not positive.'
|
||||
print*,'ssort: n = ',nn,' kflag = ',kflag
|
||||
return
|
||||
endif
|
||||
c
|
||||
|
3
wsjt.py
3
wsjt.py
@ -92,7 +92,6 @@ g.freeze_decode=0
|
||||
g.mode=""
|
||||
g.ndevin=IntVar()
|
||||
g.ndevout=IntVar()
|
||||
|
||||
#------------------------------------------------------ showspecjt
|
||||
def showspecjt():
|
||||
g.showspecjt=1
|
||||
@ -1239,8 +1238,8 @@ def update():
|
||||
msg4.configure(text=t,bg='red')
|
||||
|
||||
t=g.ftnstr(Audio.gcom2.decodedfile)
|
||||
i=0
|
||||
# i=t.rfind(".")
|
||||
i=g.rfnd(t,".")
|
||||
t=t[:i]
|
||||
lab3.configure(text=t)
|
||||
if mode.get() != g.mode or first:
|
||||
|
Loading…
Reference in New Issue
Block a user