CVSSourceCodeManager.st
changeset 3112 5ccec8607540
parent 3106 9bfea735aa59
child 3158 f8c56a311307
child 3231 b3cce588c936
--- a/CVSSourceCodeManager.st	Tue Mar 05 12:39:02 2013 +0100
+++ b/CVSSourceCodeManager.st	Wed Mar 06 11:24:34 2013 +0100
@@ -1967,7 +1967,7 @@
     "/
 
     (whatHappened isEmptyOrNil) ifTrue:[
-        'CVSSourceCodeManager [error]: unexpected empty checkin command output' errorPrintCR.
+        'CVSSourceCodeManager [warning]: unexpected empty checkin command output' errorPrintCR.
     ] ifFalse:[
         whatHappened := whatHappened asCollectionOfLines asStringCollection.
         idx := whatHappened indexOfLineStartingWith:'new revision:'.
@@ -2583,7 +2583,7 @@
     "/ fetch the new revision nr as found in the commit commands output
     "/
     (whatHappened isEmptyOrNil) ifTrue:[
-        'CVSSourceCodeManager [error]: unexpected empty checkin command output' errorPrintCR.
+        'CVSSourceCodeManager [warning]: unexpected empty checkin command output' errorPrintCR.
     ] ifFalse:[
         whatHappened := whatHappened asCollectionOfLines asStringCollection.
         idx := whatHappened indexOfLineStartingWith:'new revision:'.
@@ -5183,11 +5183,11 @@
 !CVSSourceCodeManager class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.447 2013-02-08 18:40:35 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.448 2013-03-06 10:24:34 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.447 2013-02-08 18:40:35 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.448 2013-03-06 10:24:34 cg Exp $'
 ! !