Skip to content

Commit

Permalink
[processing] workaround for fixing broken build
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Jan 12, 2017
1 parent 75a7637 commit b6632b0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/plugins/processing/core/ProcessingConfig.py
Expand Up @@ -33,7 +33,7 @@
from qgis.PyQt.QtGui import QIcon
from qgis.core import NULL, QgsApplication
from processing.tools.system import defaultOutputFolder
from processing.tools import dataobjects
import processing.tools.dataobjects


class SettingsWatcher(QObject):
Expand Down Expand Up @@ -166,7 +166,7 @@ def initialize():
valuetype=Setting.SELECTION,
options=invalidFeaturesOptions))

extensions = dataobjects.getSupportedOutputVectorLayerExtensions()
extensions = processing.tools.dataobjects.getSupportedOutputVectorLayerExtensions()
ProcessingConfig.addSetting(Setting(
ProcessingConfig.tr('General'),
ProcessingConfig.DEFAULT_OUTPUT_VECTOR_LAYER_EXT,
Expand All @@ -175,7 +175,7 @@ def initialize():
valuetype=Setting.SELECTION,
options=extensions))

extensions = dataobjects.getSupportedOutputRasterLayerExtensions()
extensions = processing.tools.dataobjects.getSupportedOutputRasterLayerExtensions()
ProcessingConfig.addSetting(Setting(
ProcessingConfig.tr('General'),
ProcessingConfig.DEFAULT_OUTPUT_RASTER_LAYER_EXT,
Expand Down

0 comments on commit b6632b0

Please sign in to comment.