]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Source/Python/Common/Dictionary.py
BaseTools: Clean some coding style issues
[mirror_edk2.git] / BaseTools / Source / Python / Common / Dictionary.py
index 5300a5456c1e3b81119a253d38c25dd3214cc20e..1c33fefabf986d86db96e95c9cf252d45ec4a026 100644 (file)
@@ -27,19 +27,19 @@ from Common.LongFilePathSupport import OpenLongFilePath as open
 #\r
 def ConvertTextFileToDictionary(FileName, Dictionary, CommentCharacter, KeySplitCharacter, ValueSplitFlag, ValueSplitCharacter):\r
     try:\r
-        F = open(FileName,'r')\r
+        F = open(FileName, 'r')\r
         Keys = []\r
         for Line in F:\r
             if Line.startswith(CommentCharacter):\r
                 continue\r
-            LineList = Line.split(KeySplitCharacter,1)\r
+            LineList = Line.split(KeySplitCharacter, 1)\r
             if len(LineList) >= 2:\r
                 Key = LineList[0].split()\r
             if len(Key) == 1 and Key[0][0] != CommentCharacter and Key[0] not in Keys:\r
                 if ValueSplitFlag:\r
-                    Dictionary[Key[0]] = LineList[1].replace('\\','/').split(ValueSplitCharacter)\r
+                    Dictionary[Key[0]] = LineList[1].replace('\\', '/').split(ValueSplitCharacter)\r
                 else:\r
-                    Dictionary[Key[0]] = LineList[1].strip().replace('\\','/')\r
+                    Dictionary[Key[0]] = LineList[1].strip().replace('\\', '/')\r
                 Keys += [Key[0]]\r
         F.close()\r
         return 0\r