<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -46,7 +46,7 @@ def _handle_failure(message, exception=None):
 
 def _shell_escape(string):
     &quot;&quot;&quot;
-    Escape double quotes and dollar signs in given ``string``.
+    Escape double quotes, backticks and dollar signs in given ``string``.
 
     For example::
 
@@ -55,7 +55,9 @@ def _shell_escape(string):
         &gt;&gt;&gt; _shell_escape('&quot;')
         '\\\\&quot;'
     &quot;&quot;&quot;
-    return string.replace(r'&quot;', r'\&quot;').replace(r'$', r'\$')
+    for char in ('&quot;', '$', '`'):
+        string = string.replace(char, '\%s' % char)
+    return string
 
 
 class _AttributeString(str):</diff>
      <filename>fabric/operations.py</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>881d6a486338a02fa7c8bbe91059c72d41f15bfa</id>
    </parent>
    <parent>
      <id>e1e0566bdd3de009dbb39a0292f1e9c06cb1fcc3</id>
    </parent>
  </parents>
  <author>
    <name>Jeff Forcier</name>
    <email>jeff@bitprophet.org</email>
  </author>
  <url>http://github.com/karmazilla/fabric/commit/8586f68bf4c93a20be709ba4dc12dce8aa639150</url>
  <id>8586f68bf4c93a20be709ba4dc12dce8aa639150</id>
  <committed-date>2009-09-17T17:31:43-07:00</committed-date>
  <authored-date>2009-09-17T17:31:43-07:00</authored-date>
  <message>Merge branch '0.9'</message>
  <tree>3927aedca43dfb630fa1287f57e933161ce0ca3b</tree>
  <committer>
    <name>Jeff Forcier</name>
    <email>jeff@bitprophet.org</email>
  </committer>
</commit>
