Skip to content

Commit 9fb0b76

Browse files
committedOct 18, 2012
sextanteexampleprovider: move import into classFactory function
1 parent 63e8188 commit 9fb0b76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/sextanteexampleprovider/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
# This will get replaced with a git SHA1 when you do a git archive
2424
__revision__ = '$Format:%H$'
2525

26-
from sextanteexampleprovider.SextanteExampleProviderPlugin import SextanteExampleProviderPlugin
2726
def name():
2827
return "SEXTANTE example provider"
2928
def description():
@@ -35,4 +34,5 @@ def icon():
3534
def qgisMinimumVersion():
3635
return "1.0"
3736
def classFactory(iface):
37+
from sextanteexampleprovider.SextanteExampleProviderPlugin import SextanteExampleProviderPlugin
3838
return SextanteExampleProviderPlugin()

0 commit comments

Comments
 (0)
Please sign in to comment.