Skip to content

Commit 0bc88da

Browse files
committed
Correct bugs
1 parent 00c51d1 commit 0bc88da

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ termcolor>=1.1.0
33
tabulate>=0.8.1
44
psutil>=5.4.3
55
clr>=1.0.3
6-
Flask>=0.12.2
6+
Flask==0.12.2
77
wsgidav>=2.4.1
88
cheroot>=6.3.3

test/mp_tests.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -224,10 +224,12 @@ def testVBGenerators():
224224
result = False
225225
testSummary[testFormat+ " CMD template"] = "[KO]"
226226
logging.exception(" [!] Error!\n")
227-
228-
if os.path.isfile(testFile):
229-
os.remove(testFile)
230-
227+
228+
try:
229+
if os.path.isfile(testFile):
230+
os.remove(testFile)
231+
except:
232+
logging.exception(" [!] Error while attempting to remove %s!\n" % testFile)
231233

232234
os.remove(vbaTestFile)
233235
return result

0 commit comments

Comments
 (0)