Skip to content

Commit

Permalink
(test_cli - use consistent spacing for named arguments)
Browse files Browse the repository at this point in the history
Ignore-this: 9d82748a4a4c176786a9cd4ad2dbba05

darcs-hash:20140502141009-3a4db-ef7f05a9a7f855d5be33bb6ed3fa2bbc9940fdba
  • Loading branch information
MattShannon committed May 2, 2014
1 parent 08cbe86 commit 347b53a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/test_cli.py
Expand Up @@ -23,12 +23,12 @@
# (FIXME : this script currently only works from repo root directory)

class TempDir(object):
def __init__(self, prefix = 'mcd.', removeOnException = False):
def __init__(self, prefix='mcd.', removeOnException=False):
self.prefix = prefix
self.removeOnException = removeOnException

def __enter__(self):
self.location = tempfile.mkdtemp(prefix = self.prefix)
self.location = tempfile.mkdtemp(prefix=self.prefix)
return self

def remove(self):
Expand Down

0 comments on commit 347b53a

Please sign in to comment.