diff options
author | W. Trevor King <wking@drexel.edu> | 2010-01-19 10:09:12 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2010-01-19 10:09:12 -0500 |
commit | ebcf057be68161a2a2ceee34622f24d89a7022a0 (patch) | |
tree | 24d9a8203c358109f8852da95da9d9feac2f9603 | |
parent | 449d80de4bb035542498623133b9cd347e7cfe13 (diff) | |
download | bugseverywhere-ebcf057be68161a2a2ceee34622f24d89a7022a0.tar.gz |
Fixed libbe.utuil->libbe.util typo in be-handle-mail.
Also removed some references to the old XML interface.
-rw-r--r-- | interfaces/email/interactive/README | 13 | ||||
-rwxr-xr-x | interfaces/email/interactive/be-handle-mail | 6 |
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']: |