Skip to content
This repository has been archived by the owner on Jun 4, 2023. It is now read-only.

Commit

Permalink
docs: Python 3 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentbernat committed Nov 15, 2019
1 parent 52e7112 commit c3ad000
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# -*- coding: utf-8 -*-

import sys
import os
import json

extensions = ['sphinxcontrib.httpdomain']
Expand All @@ -12,7 +10,7 @@
# General information about the project.
project = u'Dashkiosk'
copyright = u'2014, Vincent Bernat'
version = json.load(file('../package.json'))['version']
version = json.load(open('../package.json'))['version']
release = version

exclude_patterns = ['_build']
Expand Down

0 comments on commit c3ad000

Please sign in to comment.