Show More
@@ -13,9 +13,14 b' where WRITER is the name of a Docutils w' | |||
|
13 | 13 | """ |
|
14 | 14 | |
|
15 | 15 | import sys |
|
16 | from docutils.parsers.rst import roles | |
|
17 |
from docutils. |
|
|
18 | from docutils import nodes, utils | |
|
16 | try: | |
|
17 | from docutils.parsers.rst import roles | |
|
18 | from docutils.core import publish_cmdline | |
|
19 | from docutils import nodes, utils | |
|
20 | except ImportError: | |
|
21 | sys.stderr.write("abort: couldn't generate documentation: docutils " | |
|
22 | "module is missing\n") | |
|
23 | sys.exit(-1) | |
|
19 | 24 | |
|
20 | 25 | def role_hg(name, rawtext, text, lineno, inliner, |
|
21 | 26 | options={}, content=[]): |
@@ -1713,7 +1713,7 b' class queue(object):' | |||
|
1713 | 1713 | else: |
|
1714 | 1714 | text = url.open(self.ui, filename).read() |
|
1715 | 1715 | except (OSError, IOError): |
|
1716 | raise util.Abort(_("unable to read %s") % filename) | |
|
1716 | raise util.Abort(_("unable to read file %s") % filename) | |
|
1717 | 1717 | if not patchname: |
|
1718 | 1718 | patchname = normname(os.path.basename(filename)) |
|
1719 | 1719 | self.check_reserved_name(patchname) |
@@ -395,7 +395,7 b' def _dispatch(ui, args):' | |||
|
395 | 395 | try: |
|
396 | 396 | wd = os.getcwd() |
|
397 | 397 | except OSError, e: |
|
398 |
raise util.Abort(_("error getting current working directory: %s") % |
|
|
398 | raise util.Abort(_("error getting current working directory: %s") % | |
|
399 | 399 | e.strerror) |
|
400 | 400 | path = cmdutil.findrepo(wd) or "" |
|
401 | 401 | if not path: |
General Comments 0
You need to be logged in to leave comments.
Login now