[Checkins] SVN: zc.sshtunnel/trunk/src/zc/sshtunnel/recipe.py	Escape percentages in string
    Matthew Wilkes 
    matthew at matthewwilkes.co.uk
       
    Wed Oct 22 08:03:10 EDT 2008
    
    
  
Log message for revision 92470:
  Escape percentages in string
Changed:
  U   zc.sshtunnel/trunk/src/zc/sshtunnel/recipe.py
-=-
Modified: zc.sshtunnel/trunk/src/zc/sshtunnel/recipe.py
===================================================================
--- zc.sshtunnel/trunk/src/zc/sshtunnel/recipe.py	2008-10-22 11:59:47 UTC (rev 92469)
+++ zc.sshtunnel/trunk/src/zc/sshtunnel/recipe.py	2008-10-22 12:03:09 UTC (rev 92470)
@@ -116,7 +116,7 @@
             print name, 'started'
     elif verb == 'fg':
         if os.path.exists(pid_file):
-            print "Pid file %s already exists" % pid_file
+            print "Pid file %%s already exists" %% pid_file
             return
         os.execlp('ssh', 'ssh', '-TnaxqNL'+specification, via)
     elif verb == 'status':
    
    
More information about the Checkins
mailing list