def renamePath(self, src, dst): """ Rename the source path to the given name. :type src: str :type dst: str :rtype: str """ studiolibrary.renamePathInFile(self.databasePath(), src, dst) return dst
def renamePath(self, src, dst): """ Rename the source path to the given name. :type src: str :type dst: str :rtype: str """ studiolibrary.renamePathInFile(self.databasePath(), src, dst) self.setDirty(True) return dst