[yum-cvs] yum/bin yum-updatesd.py, 1.1.2.2, 1.1.2.3 yum.py, 1.7.4.2, 1.7.4.3

James Bowes jbowes at linux.duke.edu
Tue Dec 5 14:39:36 UTC 2006


Update of /home/groups/yum/cvs/yum/bin
In directory login1.linux.duke.edu:/tmp/cvs-serv17412/bin

Modified Files:
      Tag: yum-3_0_X
	yum-updatesd.py yum.py 
Log Message:
Pychecker fixes back again, less the brokenness

Index: yum-updatesd.py
===================================================================
RCS file: /home/groups/yum/cvs/yum/bin/yum-updatesd.py,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -u -r1.1.2.2 -r1.1.2.3
--- yum-updatesd.py	5 Dec 2006 14:03:33 -0000	1.1.2.2
+++ yum-updatesd.py	5 Dec 2006 14:39:34 -0000	1.1.2.3
@@ -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.4.2
retrieving revision 1.7.4.3
diff -u -r1.7.4.2 -r1.7.4.3
--- yum.py	5 Dec 2006 14:03:33 -0000	1.7.4.2
+++ yum.py	5 Dec 2006 14:39:34 -0000	1.7.4.3
@@ -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:




More information about the Yum-cvs-commits mailing list