Commit 784d503c authored by Jim Fulton's avatar Jim Fulton

Fixed a bug in generation of sequence-query.

parent 03b1c7b0
...@@ -276,7 +276,7 @@ ...@@ -276,7 +276,7 @@
of the module 'Missing', if present. of the module 'Missing', if present.
''' #' ''' #'
__rcs_id__='$Id: DT_In.py,v 1.19 1998/01/16 19:08:55 jim Exp $' __rcs_id__='$Id: DT_In.py,v 1.20 1998/01/22 20:31:47 jim Exp $'
############################################################################ ############################################################################
# Copyright # Copyright
...@@ -330,7 +330,7 @@ __rcs_id__='$Id: DT_In.py,v 1.19 1998/01/16 19:08:55 jim Exp $' ...@@ -330,7 +330,7 @@ __rcs_id__='$Id: DT_In.py,v 1.19 1998/01/16 19:08:55 jim Exp $'
# (540) 371-6909 # (540) 371-6909
# #
############################################################################ ############################################################################
__version__='$Revision: 1.19 $'[11:-2] __version__='$Revision: 1.20 $'[11:-2]
from DT_Util import * from DT_Util import *
from string import find, atoi, join from string import find, atoi, join
...@@ -786,7 +786,7 @@ class sequence_variables: ...@@ -786,7 +786,7 @@ class sequence_variables:
v=re.group(0) v=re.group(0)
query_string=(query_string[:l]+ query_string=(query_string[:l]+
query_string[l+len(v)-1:]) query_string[l+len(v)-1:])
query_string='?'+query_string[1:] query_string='?'+query_string[1:]
else: query_string='?' else: query_string='?'
data[key]=query_string data[key]=query_string
return query_string return query_string
...@@ -848,6 +848,9 @@ class sequence_variables: ...@@ -848,6 +848,9 @@ class sequence_variables:
############################################################################ ############################################################################
# $Log: DT_In.py,v $ # $Log: DT_In.py,v $
# Revision 1.20 1998/01/22 20:31:47 jim
# Fixed a bug in generation of sequence-query.
#
# Revision 1.19 1998/01/16 19:08:55 jim # Revision 1.19 1998/01/16 19:08:55 jim
# Fixed some documentation. # Fixed some documentation.
# #
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment