Ignore:
Timestamp:
Jul 2, 2021 2:20:10 PM (2 years ago)
Author:
toby
Message:

duplicate Seq->csv export; set svn proxy from environment variables

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIctrlGUI.py

    r4979 r4987  
    27972797        self.addRows = addRows
    27982798        self.size = size
    2799         self.hlp = StripIndents(hlp,True)
     2799        self.hlp = hlp
    28002800        self.lbl = lbl
    28012801        self.CenterOnParent()
     
    56015601    When singleLine is True, all newline are removed, but inserting "%%"
    56025602    into the string will cause a blank line to be inserted at that point
     5603    and %t% will generate a new line and tab (to indent a line)
    56035604
    56045605    :param str msg: a string containing one or more lines of text.
    56055606      spaces or tabs following a newline are removed.
     5607    :param bool singleLine: removes all newlines from the msg so that
     5608      the text may be wrapped.
    56065609    :returns: the string but reformatted
    56075610    '''
     
    56225625            msg1 = msg1.replace('  ',' ')
    56235626        msg = msg.replace('%%','\n\n')
     5627        msg = msg.replace('%t%','\n\t')
    56245628    return msg
    56255629
Note: See TracChangeset for help on using the changeset viewer.