We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00c51d1 commit 0bc88daCopy full SHA for 0bc88da
requirements.txt
@@ -3,6 +3,6 @@ termcolor>=1.1.0
3
tabulate>=0.8.1
4
psutil>=5.4.3
5
clr>=1.0.3
6
-Flask>=0.12.2
+Flask==0.12.2
7
wsgidav>=2.4.1
8
cheroot>=6.3.3
test/mp_tests.py
@@ -224,10 +224,12 @@ def testVBGenerators():
224
result = False
225
testSummary[testFormat+ " CMD template"] = "[KO]"
226
logging.exception(" [!] Error!\n")
227
-
228
- if os.path.isfile(testFile):
229
- os.remove(testFile)
230
+
+ try:
+ if os.path.isfile(testFile):
+ os.remove(testFile)
231
+ except:
232
+ logging.exception(" [!] Error while attempting to remove %s!\n" % testFile)
233
234
os.remove(vbaTestFile)
235
return result
0 commit comments