def rescan_filesystem(): import dbdata_from_config with transaction.commit_on_success(): for src_dir in models.SourceSimDir.objects.all(): dbdata_from_config.update_all_db(src_dir.directory_name)
def update_all_db(cls, directory): import dbdata_from_config assert False, 'Should call the method directly!' return dbdata_from_config.update_all_db(directory)