]> git.proxmox.com Git - mirror_ovs.git/blobdiff - python/ovs/util.py
python: Fix invalid escape sequences.
[mirror_ovs.git] / python / ovs / util.py
index 411ac99c85a45b4d5272bfa1e363e4ab9a04eb77..3dba022f8e277a57384a287f431ff03b9af3262c 100644 (file)
@@ -31,7 +31,7 @@ def abs_file_name(dir_, file_name):
     This differs from os.path.abspath() in that it will never change the
     meaning of a file name.
 
-    On Windows an absolute path contains ':' ( i.e: C:\ ) """
+    On Windows an absolute path contains ':' ( i.e: C:\\ ) """
     if file_name.startswith('/') or file_name.find(':') > -1:
         return file_name
     else: