]> git.proxmox.com Git - mirror_ovs.git/blobdiff - python/ovs/unixctl/__init__.py
python: Fix invalid escape sequences.
[mirror_ovs.git] / python / ovs / unixctl / __init__.py
index 025da2a90dacbdb5770686a89bf88875d5e76090..c2e5aca8d6ff9b0d0834089657ee862503ae257b 100644 (file)
@@ -73,7 +73,7 @@ def command_register(name, usage, min_args, max_args, callback, aux):
 def socket_name_from_target(target):
     assert isinstance(target, strtypes)
 
-    """ On Windows an absolute path contains ':' ( i.e: C:\ ) """
+    """ On Windows an absolute path contains ':' ( i.e: C:\\ ) """
     if target.startswith('/') or target.find(':') > -1:
         return 0, target