VCS/VersionControl.py

changeset 5603
4f2dd0850803
parent 5452
9f89364d9ffd
child 5674
a0ad2dcb27f9
diff -r 77755a5ea30c -r 4f2dd0850803 VCS/VersionControl.py
--- a/VCS/VersionControl.py	Sat Mar 11 13:11:29 2017 +0100
+++ b/VCS/VersionControl.py	Sat Mar 11 14:35:22 2017 +0100
@@ -524,15 +524,15 @@
         if key in self.interestingDataKeys:
             self.otherData[key] = value
         
-    def vcsSetDataFromDict(self, dict):
+    def vcsSetDataFromDict(self, dictionary):
         """
         Public method used to set entries in the otherData dictionary.
         
-        @param dict dictionary to pick entries from
+        @param dictionary dictionary to pick entries from
         """
         for key in self.interestingDataKeys:
-            if key in dict:
-                self.otherData[key] = dict[key]
+            if key in dictionary:
+                self.otherData[key] = dictionary[key]
         
     #####################################################################
     ## below are some utility methods

eric ide

mercurial