Skip to content

Commit

Permalink
Comment fixes in testscript
Browse files Browse the repository at this point in the history
  • Loading branch information
jmorse committed Jan 10, 2015
1 parent 55c1ea7 commit e159780
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testscript.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import pygit2_backends
import _pygit2_backends

# Starting assumption: you have an empty database and a user that can create
# Starting assumption: you have an _empty_ database and a user that can create
# tables and write/read to them. Fill in the configuration below as appropriate.
# You must also have my patch to pygit2 (6edb77f5) installed for repo creation
# to work.
Expand All @@ -22,7 +22,7 @@
_pygit2_backends.create_mysql_backend(mysql_hostname, mysql_username, mysql_password, mysql_dbname, mysql_portno, mysql_unix_socket)
print("Created mysql backend database");

# Attempt to open the db we just connected, into a pygit2 repostiory object
# Attempt to open the db we just created, into a pygit2 repository object

repo = pygit2_backends.MysqlRepository(mysql_hostname, mysql_username, mysql_password, mysql_dbname, mysql_portno, mysql_unix_socket)
print("Opened mysql git repository");
Expand Down

0 comments on commit e159780

Please sign in to comment.