Skip to content

Commit

Permalink
Make this work on Python 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
myint committed Apr 10, 2015
1 parent 52112f1 commit 60730c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/acid.py
Expand Up @@ -121,8 +121,8 @@ def process_args():
parser = argparse.ArgumentParser()
parser.add_argument(
'--command',
default='{} {}'.format(sys.executable,
os.path.join(ROOT_PATH, 'autopep8.py')),
default='{0} {1}'.format(sys.executable,
os.path.join(ROOT_PATH, 'autopep8.py')),
help='autopep8 command (default: %(default)s)')
parser.add_argument('--ignore',
help='comma-separated errors to ignore',
Expand Down

0 comments on commit 60730c6

Please sign in to comment.