aboutsummaryrefslogtreecommitdiffstats
path: root/interfaces
diff options
context:
space:
mode:
Diffstat (limited to 'interfaces')
-rw-r--r--interfaces/email/interactive/README13
-rwxr-xr-xinterfaces/email/interactive/be-handle-mail6
2 files changed, 4 insertions, 15 deletions
diff --git a/interfaces/email/interactive/README b/interfaces/email/interactive/README
index 2070973..b25054c 100644
--- a/interfaces/email/interactive/README
+++ b/interfaces/email/interactive/README
@@ -28,10 +28,8 @@ first place. There are four parsing styles:
creating bugs [be-bug:submit] new bug summary
commenting on bugs [be-bug:<bug-id>] commit message
control [be-bug] commit message
- xml [be-bug:xml] commit message
These are analogous to submit@bugs.debian.org, nnn@bugs.debian.org,
-and control@bugs.debian.org respectively. The xml style has no Debian
-analog.
+and control@bugs.debian.org respectively.
Creating bugs
=============
@@ -108,15 +106,6 @@ shlex.split().
--
Goofy tagline ignored.
-XML
-===
-
-This interface allows users without access to the versioned source of
-the program to conveniently submit bugs and comments using be. You
-should not attempt to compose emails for this interface by hand. See
-the documentation for the `email-bugs' and `import-xml' be commands
-for details.
-
Example emails
==============
diff --git a/interfaces/email/interactive/be-handle-mail b/interfaces/email/interactive/be-handle-mail
index 14ae6ac..161e118 100755
--- a/interfaces/email/interactive/be-handle-mail
+++ b/interfaces/email/interactive/be-handle-mail
@@ -374,8 +374,8 @@ class Message (object):
def _subject_tag_type(self):
"""
Parse subject tag, return (type, value), where type is one of
- None, "new", "comment", "control", or "xml"; and value is None
- except in the case of "comment", in which case it's the bug
+ None, "new", "comment", or "control"; and value is None except
+ in the case of "comment", in which case it's the bug
ID/shortname.
"""
tag,subject = self._split_subject()
@@ -718,7 +718,7 @@ def open_logfile(logpath=None):
LOGPATH = os.path.join(_THIS_DIR, logpath)
if LOGFILE == None and LOGPATH != u'none':
LOGFILE = codecs.open(LOGPATH, u'a+',
- libbe.utuil.encoding.get_filesystem_encoding())
+ libbe.util.encoding.get_filesystem_encoding())
def close_logfile():
if LOGFILE != None and LOGPATH not in [u'stderr', u'none']: