[yum-cvs] yum/bin yum-updatesd.py,1.1,1.1.2.1 yum.py,1.7,1.7.4.1
James Bowes
jbowes at linux.duke.edu
Tue Dec 5 00:44:28 UTC 2006
- Previous message: [yum-cvs] yum/yum comps.py, 1.11, 1.12 depsolve.py, 1.106, 1.107 failover.py, 1.2, 1.3 mdparser.py, 1.5, 1.6 misc.py, 1.22, 1.23 packageSack.py, 1.21, 1.22 packages.py, 1.80, 1.81 pgpmsg.py, 1.5, 1.6 sqlitecache.py, 1.13, 1.14 update_md.py, 1.3, 1.4
- Next message: [yum-cvs] yum/rpmUtils miscutils.py, 1.15, 1.15.2.1 updates.py, 1.23, 1.23.2.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /home/groups/yum/cvs/yum/bin
In directory login1.linux.duke.edu:/tmp/cvs-serv792/bin
Modified Files:
Tag: yum-3_0_X
yum-updatesd.py yum.py
Log Message:
pychecker related fixes, including unused imports, and removal of use of deprecated methods from the string module
Index: yum-updatesd.py
===================================================================
RCS file: /home/groups/yum/cvs/yum/bin/yum-updatesd.py,v
retrieving revision 1.1
retrieving revision 1.1.2.1
diff -u -r1.1 -r1.1.2.1
--- yum-updatesd.py 27 Jun 2006 20:53:30 -0000 1.1
+++ yum-updatesd.py 5 Dec 2006 00:44:26 -0000 1.1.2.1
@@ -1,9 +1,9 @@
#!/usr/bin/python
import sys
try:
- import yum
+ import yum
except ImportError:
- print >> sys.stderr, """\
+ print >> sys.stderr, """\
There was a problem importing one of the Python modules
required to run yum. The error leading to this problem was:
@@ -21,7 +21,7 @@
http://wiki.linux.duke.edu/YumFaq
""" % (sys.exc_value, sys.version)
- sys.exit(1)
+ sys.exit(1)
sys.path.insert(0, '/usr/share/yum-cli')
try:
Index: yum.py
===================================================================
RCS file: /home/groups/yum/cvs/yum/bin/yum.py,v
retrieving revision 1.7
retrieving revision 1.7.4.1
diff -u -r1.7 -r1.7.4.1
--- yum.py 2 Nov 2005 22:22:45 -0000 1.7
+++ yum.py 5 Dec 2006 00:44:26 -0000 1.7.4.1
@@ -1,9 +1,9 @@
#!/usr/bin/python
import sys
try:
- import yum
+ import yum
except ImportError:
- print >> sys.stderr, """\
+ print >> sys.stderr, """\
There was a problem importing one of the Python modules
required to run yum. The error leading to this problem was:
@@ -21,7 +21,7 @@
http://wiki.linux.duke.edu/YumFaq
""" % (sys.exc_value, sys.version)
- sys.exit(1)
+ sys.exit(1)
sys.path.insert(0, '/usr/share/yum-cli')
try:
- Previous message: [yum-cvs] yum/yum comps.py, 1.11, 1.12 depsolve.py, 1.106, 1.107 failover.py, 1.2, 1.3 mdparser.py, 1.5, 1.6 misc.py, 1.22, 1.23 packageSack.py, 1.21, 1.22 packages.py, 1.80, 1.81 pgpmsg.py, 1.5, 1.6 sqlitecache.py, 1.13, 1.14 update_md.py, 1.3, 1.4
- Next message: [yum-cvs] yum/rpmUtils miscutils.py, 1.15, 1.15.2.1 updates.py, 1.23, 1.23.2.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Yum-cvs-commits
mailing list