~ubuntu-branches/ubuntu/precise/ubuntuone-client/precise-201112142106

« back to all changes in this revision

Viewing changes to ubuntuone/syncdaemon/interaction_interfaces.py

  • Committer: Bazaar Package Importer
  • Author(s): Rodney Dawes
  • Date: 2011-08-25 16:11:47 UTC
  • mfrom: (1.1.54 upstream)
  • Revision ID: james.westby@ubuntu.com-20110825161147-v6zedpznh2evnurj
Tags: 1.7.2-0ubuntu1
* New upstream release.
  - Work correctly with static and GI bindings of gobject (LP: #829186)

Show diffs side-by-side

added added

removed removed

Lines of Context:
603
603
    def create(self, path):
604
604
        """Create a user defined folder in the specified path."""
605
605
        logger.debug('Folders.create: %r', path)
606
 
        path = normpath(path)
607
 
        self.vm.create_udf(path.encode('utf-8'))
 
606
        path = normpath(path.encode('utf-8'))
 
607
        self.vm.create_udf(path)
608
608
 
609
609
    def delete(self, folder_id):
610
610
        """Delete the folder specified by folder_id"""