johnf wrote: > ... > if sys.platform == 'win32': > myseperator = "\\" # some should post why I needed two > slashes > else: > myseperator = "/" > ...
Please use os.path.sep or os.sep or os.path.join as the above is teaching bad style for newbies. _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/dabo-users/[EMAIL PROTECTED]
