UnixFilename.st
changeset 17073 10f589aa4409
parent 17047 add3f6361c26
child 17075 ff03935f9141
--- a/UnixFilename.st	Tue Nov 18 19:58:00 2014 +0100
+++ b/UnixFilename.st	Tue Nov 18 19:58:12 2014 +0100
@@ -59,7 +59,8 @@
         tempDirString notNil ifTrue:[
             tempDir := self named:tempDirString.    
             (tempDir exists and:[ tempDir isWritable ]) ifTrue:[
-                ('Filename [info]: using tmp folder as specified by: ',envVar) infoPrintCR.
+                ('Filename [info]: using tmp folder "%1" as specified by environment: "%2"'
+                    bindWith:tempDir with:envVar) infoPrintCR.
                 ^ tempDir asFilename.
             ].
         ].
@@ -225,10 +226,10 @@
 !UnixFilename class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/UnixFilename.st,v 1.23 2014-11-13 11:25:45 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/UnixFilename.st,v 1.24 2014-11-18 18:58:12 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/UnixFilename.st,v 1.23 2014-11-13 11:25:45 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/UnixFilename.st,v 1.24 2014-11-18 18:58:12 cg Exp $'
 ! !