Ejemplo n.º 1
0
    def runFeatureCommand(self, featureName):
        """
		Run a feature command.
		
		:param featureName: the name of the feature.
		"""
        # run a command
        errorCode = VimbaDLL.featureCommandRun(self._handle, featureName)
        if errorCode != 0:
            raise VimbaException(errorCode)
Ejemplo n.º 2
0
    def runFeatureCommand(self, featureName):
        """
        Run a feature command.

        :param featureName: the name of the feature.
        """
        # run a command
        errorCode = VimbaDLL.featureCommandRun(self._handle,
                                               featureName)
        if errorCode != 0:
            raise VimbaException(errorCode)