Mercurial > hg > PaInt
comparison paint/package.py @ 52:026d693cd561
cleanup
| author | Jeff Hammel <jhammel@mozilla.com> |
|---|---|
| date | Wed, 02 Jan 2013 13:11:14 -0800 |
| parents | 8b4243893474 |
| children | c588375a7ce4 |
comparison
equal
deleted
inserted
replaced
| 51:8b4243893474 | 52:026d693cd561 |
|---|---|
| 305 assert os.path.isdir(directory) | 305 assert os.path.isdir(directory) |
| 306 tempdir = tempfile.mkdtemp() | 306 tempdir = tempfile.mkdtemp() |
| 307 try: | 307 try: |
| 308 self.download(tempdir) | 308 self.download(tempdir) |
| 309 files = os.listdir(tempdir) | 309 files = os.listdir(tempdir) |
| 310 print ">>> Files: %s" % files | 310 self._log(">>> Files: %s" % files) |
| 311 for f in files: | 311 for f in files: |
| 312 | 312 |
| 313 # full path | 313 # full path |
| 314 src = os.path.join(tempdir, f) | 314 src = os.path.join(tempdir, f) |
| 315 | 315 |
