From 334e4aec35615e3cfdd35f16a65fb8f72b1e4483 Mon Sep 17 00:00:00 2001 From: Luke McGartland Date: Fri, 6 Apr 2018 02:35:19 -0700 Subject: [PATCH] Removed template reference --- graphene_file_upload/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/graphene_file_upload/__init__.py b/graphene_file_upload/__init__.py index 8919e7d..771c4db 100644 --- a/graphene_file_upload/__init__.py +++ b/graphene_file_upload/__init__.py @@ -13,7 +13,7 @@ # Basically we need to do all of the above. class ModifiedGraphQLView(GraphQLView): - graphiql_template = 'graphiql.html' + # graphiql_template = 'graphiql.html' @staticmethod def get_graphql_params(request, data): diff --git a/setup.py b/setup.py index 63333ad..be458fb 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ setup( name = 'graphene_file_upload', packages = ['graphene_file_upload'], # this must be the same as the name above - version = '0.1.0', + version = '0.1.1', description = 'Lib for adding file upload functionality to GraphQL mutations in Graphene Django', long_description=long_description, long_description_content_type='text/x-rst',