diff options
author | W. Trevor King <wking@drexel.edu> | 2009-07-25 07:26:19 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-07-25 07:26:19 -0400 |
commit | 9afbe4e78f7a332401ec03008ff66faa5c11e297 (patch) | |
tree | f1bdf894bae6b619858a56de1496d28519e7c487 /interfaces/xml/be-xml-to-mbox | |
parent | 987324916401466efd01a8aeefb22c59b5f5a766 (diff) | |
download | bugseverywhere-9afbe4e78f7a332401ec03008ff66faa5c11e297.tar.gz |
Renamed Comment.From and .time_string to .author and .date respectively.
Now they conform to the
libbe.settings_object.setting_name_to_attr_name()
standard.
I fixed the references I found in
becommands/comment.py
interfaces/xml/be-mbox-to-xml
interfaces/xml/be-xml-to-mbox
but there may have been some references or files that slipped through.
Diffstat (limited to 'interfaces/xml/be-xml-to-mbox')
-rwxr-xr-x | interfaces/xml/be-xml-to-mbox | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/interfaces/xml/be-xml-to-mbox b/interfaces/xml/be-xml-to-mbox index ea77c34..c630447 100755 --- a/interfaces/xml/be-xml-to-mbox +++ b/interfaces/xml/be-xml-to-mbox @@ -129,7 +129,7 @@ class Comment (LimitedAttrDict): u"alt-id", u"short-name", u"in-reply-to", - u"from", + u"author", u"date", u"content-type", u"body"] @@ -137,7 +137,7 @@ class Comment (LimitedAttrDict): if bug == None: bug = Bug() bug[u"uuid"] = u"no-uuid" - name,addr = email.utils.parseaddr(self["from"]) + name,addr = email.utils.parseaddr(self["author"]) print "From %s %s" % (addr, rfc2822_to_asctime(self["date"])) if "uuid" in self: id = self["uuid"] elif "alt-id" in self: id = self["alt-id"] @@ -145,7 +145,7 @@ class Comment (LimitedAttrDict): if id != None: print "Message-ID: <%s@%s>" % (id, DEFAULT_DOMAIN) print "Date: %s" % self["date"] - print "From: %s" % self["from"] + print "From: %s" % self["author"] subject = "" if "short-name" in self: subject += self["short-name"]+u": " |