Skip to content
This repository has been archived by the owner on Feb 7, 2019. It is now read-only.

Commit

Permalink
Merge 4e08f1b into bf32d07
Browse files Browse the repository at this point in the history
  • Loading branch information
galund committed Jun 26, 2018
2 parents bf32d07 + 4e08f1b commit e9ebc4b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion flask_featureflags/__init__.py
Expand Up @@ -21,7 +21,7 @@
from flask import redirect as _redirect
from flask.signals import Namespace

__version__ = '0.7-dev'
__version__ = '1.0'

log = logging.getLogger(u'flask-featureflags')

Expand Down
6 changes: 3 additions & 3 deletions flask_featureflags/contrib/inline/__init__.py
@@ -1,7 +1,7 @@
from flask import current_app
from flask.ext.featureflags import FEATURE_FLAGS_CONFIG
from flask.ext.featureflags import NoFeatureFlagFound
from flask.ext.featureflags import log
from flask_featureflags import FEATURE_FLAGS_CONFIG
from flask_featureflags import NoFeatureFlagFound
from flask_featureflags import log


class InlineFeatureFlag(object):
Expand Down
2 changes: 1 addition & 1 deletion flask_featureflags/contrib/sqlalchemy/__init__.py
@@ -1,7 +1,7 @@
from sqlalchemy import Column, Integer, Boolean, String
from sqlalchemy.orm.exc import NoResultFound
from flask import current_app
from flask.ext.featureflags import NoFeatureFlagFound, log
from flask_featureflags import NoFeatureFlagFound, log


class SQLAlchemyFeatureFlags(object):
Expand Down

0 comments on commit e9ebc4b

Please sign in to comment.