Skip to content

Commit

Permalink
Remove INTEGRATIONS_ENABLE_SSL settings variable
Browse files Browse the repository at this point in the history
  • Loading branch information
krzysztofwolski committed Dec 22, 2016
1 parent d8ebd78 commit a5af8fb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion saleor/integrations/feeds.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def item_guid(self, item):
def item_link(self, item):
return add_domain(self.current_site.domain,
item.get_absolute_url(),
settings.INTEGRATIONS_ENABLE_SSL)
not settings.DEBUG)

def item_title(self, item):
return item.display_product()
Expand Down
2 changes: 0 additions & 2 deletions saleor/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,6 @@
LOGIN_REDIRECT_URL = 'home'

INTEGRATIONS_DIR = os.environ.get('INTEGRATIONS_DIR', '')
INTEGRATIONS_ENABLE_SSL = ast.literal_eval(
os.environ.get('INTEGRATIONS_ENABLE_SSL', 'False'))

FACEBOOK_APP_ID = os.environ.get('FACEBOOK_APP_ID')
FACEBOOK_SECRET = os.environ.get('FACEBOOK_SECRET')
Expand Down

0 comments on commit a5af8fb

Please sign in to comment.