Skip to content

Commit

Permalink
issue pashango2#13 対応
Browse files Browse the repository at this point in the history
  • Loading branch information
kosu9i committed Mar 3, 2018
1 parent 3333831 commit 9ebbc4d
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions sphinx_qsp/quickstart_plus.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,13 @@
import json
import os

from sphinx import quickstart
from sphinx.quickstart import ask_user, generate, do_prompt, nonempty, boolean
import sphinx
if sphinx.version_info[0:2] >= (1, 7):
from sphinx import quickstart
from sphinx.quickstart.cmd import ask_user, generate, do_prompt, nonempty, boolean
else:
from sphinx import quickstart
from sphinx.quickstart import ask_user, generate, do_prompt, nonempty, boolean

__version__ = "0.6"

Expand Down

0 comments on commit 9ebbc4d

Please sign in to comment.