Skip to content
This repository was archived by the owner on Mar 23, 2023. It is now read-only.

Commit 149d721

Browse files
committed
Is it?
1 parent 84f3a0d commit 149d721

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/grumprun

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Usage: $ grumprun -m <module> # Run the named module.
2323
import argparse
2424
import os
2525
import random
26+
import shutil
2627
import string
2728
import subprocess
2829
import sys
@@ -98,7 +99,7 @@ def main(args):
9899
f.write(module_tmpl.substitute(package=package, imports=imports))
99100
return subprocess.Popen('go run ' + go_main, shell=True).wait()
100101
finally:
101-
print >> os.sys.stderr, 'shutil.rmtree(%s)' % workdir
102+
shutil.rmtree(%s)
102103

103104

104105
def _package_name(modname):

0 commit comments

Comments
 (0)