diff options
Diffstat (limited to 'libbe')
-rw-r--r-- | libbe/command/list.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbe/command/list.py b/libbe/command/list.py index c1bcba0..44be71b 100644 --- a/libbe/command/list.py +++ b/libbe/command/list.py @@ -228,7 +228,7 @@ class List (libbe.command.Command): if xml == True: print >> self.stdout, \ '<?xml version="1.0" encoding="%s" ?>' % self.stdout.encoding - print >> self.stdout, '<bugs>' + print >> self.stdout, '<be-xml>' if len(bugs) > 0: for bug in bugs: if xml == True: @@ -236,7 +236,7 @@ class List (libbe.command.Command): else: print >> self.stdout, bug.string(shortlist=True) if xml == True: - print >> self.stdout, '</bugs>' + print >> self.stdout, '</be-xml>' def _long_help(self): return """ |