Skip to content
This repository was archived by the owner on Nov 13, 2019. It is now read-only.

Commit 2146d92

Browse files
authored
Merge pull request #22 from erlerobot/python3_migration
Fix compilation script
2 parents e159ec9 + c0f8b24 commit 2146d92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/compiling.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ def listGenerated(self):
236236
def checkGenerated(self, message):
237237
res = False
238238
genList = self.listGenerated()
239-
for key, list in list(genList.items()):
239+
for key, list in genList.items():
240240
if message in list:
241241
res = key
242242

0 commit comments

Comments
 (0)