[yum-commits] Branch 'yum-3_2_X' - shell.py

skvidal at osuosl.org skvidal at osuosl.org
Thu Feb 26 16:22:20 UTC 2009


 shell.py |    1 +
 1 file changed, 1 insertion(+)

New commits:
commit 18038b9f772f6625c0ff2496147a3f04375c3748
Author: Seth Vidal <skvidal at fedoraproject.org>
Date:   Thu Feb 26 11:20:46 2009 -0500

    add '-' to identchars for the shell parseline() function. Makes check-update, among other things, work correctly
    closes rh bug https://bugzilla.redhat.com/show_bug.cgi?id=487517

diff --git a/shell.py b/shell.py
index 97bd963..2ac5c59 100644
--- a/shell.py
+++ b/shell.py
@@ -38,6 +38,7 @@ class YumShell(cmd.Cmd):
         self.base = base
         self.prompt = '> '
         self.result = 0
+        self.identchars += '-'
         self.from_file = False # if we're running from a file, set this
         self.resultmsgs = ['Leaving Shell']
         if (len(base.extcmds)) > 0:


More information about the Yum-commits mailing list