Skip to content

Commit

Permalink
Revert "Add date to temporary directory name (#33)" (#34)
Browse files Browse the repository at this point in the history
This reverts commit 6d3fd7e.
  • Loading branch information
kelloggm authored Apr 1, 2021
1 parent 6d3fd7e commit c0043b0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions do_like_javac/tools/wpi.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from filecmp import dircmp

import common
import datetime
import os
import pprint
import shutil
Expand Down Expand Up @@ -55,7 +54,7 @@ def run(args, javac_commands, jars):
iteration = 0
diffResult = 1
stubDirs = []
resultsDir = tempfile.mkdtemp(prefix="wpi-stubs-" + datetime.now().format("%Y%m%d%H%M%S)"))
resultsDir = tempfile.mkdtemp(prefix="wpi-stubs-")

print "Directory for generated stub files: " + str(resultsDir)

Expand Down

0 comments on commit c0043b0

Please sign in to comment.