From 54fbb2a4c040c3430945747f6e08621620557dcb Mon Sep 17 00:00:00 2001 From: Jake Moshenko Date: Mon, 8 Sep 2014 16:42:43 -0400 Subject: [PATCH] Rename collections to morecollections to avoid a conflict with the built in module. --- data/billing.py | 2 +- data/migrations/env.py | 2 +- util/{collections.py => morecollections.py} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename util/{collections.py => morecollections.py} (100%) diff --git a/data/billing.py b/data/billing.py index 8c604aac2..e1510c054 100644 --- a/data/billing.py +++ b/data/billing.py @@ -3,7 +3,7 @@ import stripe from datetime import datetime, timedelta from calendar import timegm -from util.collections import AttrDict +from util.morecollections import AttrDict PLANS = [ # Deprecated Plans diff --git a/data/migrations/env.py b/data/migrations/env.py index 863e3d98f..d64cf4ee7 100644 --- a/data/migrations/env.py +++ b/data/migrations/env.py @@ -8,7 +8,7 @@ from peewee import SqliteDatabase from data.database import all_models, db from app import app from data.model.sqlalchemybridge import gen_sqlalchemy_metadata -from util.collections import AttrDict +from util.morecollections import AttrDict # this is the Alembic Config object, which provides # access to the values within the .ini file in use. diff --git a/util/collections.py b/util/morecollections.py similarity index 100% rename from util/collections.py rename to util/morecollections.py