Skip to content

Commit

Permalink
Merge pull request #128 from timgates42/bugfix_typo_environment
Browse files Browse the repository at this point in the history
docs: Fix simple typo, enviroment -> environment
  • Loading branch information
paulocheque committed Mar 25, 2020
2 parents f64521f + 2db9984 commit fc76b39
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
try:
from django.contrib.gis.geos import *
except ImproperlyConfigured:
pass # enviroment without geo libs
pass # environment without geo libs
except Exception:
pass # Avoid errors like GDALException

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
try:
from django.contrib.gis.geos import *
except ImproperlyConfigured:
pass # enviroment without geo libs
pass # environment without geo libs
except Exception:
pass # Avoid errors like GDALException

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
try:
from django.contrib.gis.geos import *
except ImproperlyConfigured:
pass # enviroment without geo libs
pass # environment without geo libs
except Exception:
pass # Avoid errors like GDALException

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
try:
from django.contrib.gis.db import models as geomodels
except ImproperlyConfigured:
pass # enviroment without geo libs
pass # environment without geo libs


from django.test import TestCase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
try:
from django.contrib.gis.geos import *
except ImproperlyConfigured:
pass # enviroment without geo libs
pass # environment without geo libs
except Exception:
pass # Avoid errors like GDALException

Expand Down
4 changes: 2 additions & 2 deletions django_dynamic_fixture/tests/test_ddf_geo.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
try:
from django.contrib.gis.geos import *
except ImproperlyConfigured:
pass # enviroment without geo libs
pass # environment without geo libs

try:
from django.contrib.gis.db import models as geomodel
except ImproperlyConfigured:
pass # enviroment without geo libs
pass # environment without geo libs

from django.test import TestCase
import pytest
Expand Down

0 comments on commit fc76b39

Please sign in to comment.