Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
moved odict to third_party module
  • Loading branch information
mbernasocchi committed Oct 15, 2012
1 parent 381d4a2 commit 019752d
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion safe/postprocessors/abstract_postprocessor.py
Expand Up @@ -24,7 +24,7 @@

from safe.common.exceptions import PostprocessorError

from safe.common.odict import OrderedDict
from safe.third_party.odict import OrderedDict

LOGGER = logging.getLogger('InaSAFE')

Expand Down
Empty file added safe/third_party/__init__.py
Empty file.
File renamed without changes.
2 changes: 1 addition & 1 deletion safe_qgis/keywords_dialog.py
Expand Up @@ -23,7 +23,7 @@
from PyQt4 import QtGui, QtCore
from PyQt4.QtCore import pyqtSignature

from safe.common.odict import OrderedDict
from safe.third_party.odict import OrderedDict
from safe.common.exceptions import InaSAFEError

from safe_qgis.keywords_dialog_base import Ui_KeywordsDialogBase
Expand Down
2 changes: 1 addition & 1 deletion safe_qgis/test_keywords_dialog.py
Expand Up @@ -34,7 +34,7 @@
QgsVectorLayer,
QgsMapLayerRegistry)

from safe.common.odict import OrderedDict
from safe.third_party.odict import OrderedDict
from safe_qgis.utilities_test import (getQgisTestApp,
unitTestDataPath)
from safe_qgis.safe_interface import readKeywordsFromFile
Expand Down

0 comments on commit 019752d

Please sign in to comment.