summaryrefslogtreecommitdiffstats
path: root/tests/test_main.py
diff options
context:
space:
mode:
authorDavid Szotten <davidszotten@gmail.com>2016-02-03 22:31:10 +0000
committerDavid Szotten <davidszotten@gmail.com>2016-02-03 22:31:10 +0000
commitd4ffbe610435276e8bd5b01ad851973a72508f15 (patch)
tree5389be133c342b61d6e708b685002e94e34b7de4 /tests/test_main.py
parent85181ab25280c44409ced27a50c84f8f722d9194 (diff)
oh py2.6 how i don't miss you
Diffstat (limited to 'tests/test_main.py')
-rw-r--r--tests/test_main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_main.py b/tests/test_main.py
index add1f7aa..df4bf71f 100644
--- a/tests/test_main.py
+++ b/tests/test_main.py
@@ -74,7 +74,7 @@ def test_i_works(tmpdir, executor):
pgexecute=executor,
pgclirc_file=rcfile,
)
- statement = r"\i {}".format(sqlfile)
+ statement = r"\i {0}".format(sqlfile)
run(executor, statement, pgspecial=cli.pgspecial)