madscatt / zazzie

development branch
GNU General Public License v3.0
2 stars 3 forks source link

string.split works differently in python3 than python2 #128

Closed madscatt closed 2 years ago

madscatt commented 2 years ago
    l = string.split(lines[starting_line], ',')

   should be

    l = lines[starting_line].split(',')

   need to add this to docs.
madscatt commented 2 years ago

Added to wiki python2/3 docs.