From f9f6eeb97d2a5588ba6e567b48f186c704342be9 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sun, 27 Sep 2009 22:21:22 -0400 Subject: [PATCH] Changed the default SRID constant to an integer (as opposed to a string). --- src/Configuration/Defaults.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Configuration/Defaults.py b/src/Configuration/Defaults.py index 588cddd..0de824a 100644 --- a/src/Configuration/Defaults.py +++ b/src/Configuration/Defaults.py @@ -1,4 +1,4 @@ DATABASE_HOST = 'localhost' DATABASE_NAME = 'census' DATABASE_USERNAME = 'postgres' -SRID = '4269' +SRID = 4269 -- 2.43.2