Ticket #42 (closed defect: fixed)

Opened 22 months ago

Last modified 22 months ago

Folder names with double quotes around them have the double quotes stripped

Reported by: menno Owned by:
Priority: critical Milestone: 0.6
Version: Keywords:
Cc:

Description

In [1]: c.create_folder('"foo"')
Out[1]: 'Create completed.'

In [2]: c.create_folder('"foo" bar')
Out[2]: 'Create completed.'

In [3]: [x for x in c.list_folders() if 'foo' in str(x)]
Out[3]: [(['\\HasNoChildren'], '/', '"foo" bar'), (['\\HasNoChildren'], '/', 'foo')]

There could be similar issues with other folder handling methods.

Change History

Changed 22 months ago by menno

Ensure that livetest.py covers these (and combine with list_folders test)

Changed 22 months ago by menno

  • status changed from new to closed
  • resolution set to fixed

Fixed in r143

Note: See TracTickets for help on using tickets.