Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 473a39b

Browse files
committed
Minor language fix
1 parent 3f8dafe commit 473a39b

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

extra/mssqlsig/update.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
def updateMSSQLXML():
2323
if not os.path.exists(MSSQL_XML):
24-
errMsg = "[ERROR] file '%s' does not exist. please run the script from it's parent directory." % MSSQL_XML
24+
errMsg = "[ERROR] file '%s' does not exist. Please run the script from its parent directory" % MSSQL_XML
2525
print errMsg
2626
return
2727

lib/core/agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ def simpleConcatenate(self, first, second):
471471

472472
def preprocessField(self, table, field):
473473
"""
474-
Does a field preprocessing (if needed) based on it's type (e.g. image to text)
474+
Does a field preprocessing (if needed) based on its type (e.g. image to text)
475475
Note: used primarily in dumping of custom tables
476476
"""
477477

lib/core/convert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def base64pickle(value):
5353

5454
def base64unpickle(value):
5555
"""
56-
Decodes value from Base64 to plain format and deserializes (with pickle) it's content
56+
Decodes value from Base64 to plain format and deserializes (with pickle) its content
5757
5858
>>> base64unpickle('gAJVBmZvb2JhcnEALg==')
5959
'foobar'

lib/core/xmldump.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ def dbColumns(self, dbColumns, colConsider, dbs):
437437
def query(self, query, queryRes):
438438
'''
439439
Adds details of an executed query to the xml.
440-
The query details are the query itself and it's results.
440+
The query details are the query itself and its results.
441441
'''
442442
queryElem = self.__doc.createElement(QUERY_ELEM_NAME)
443443
queryElem.setAttributeNode(self._createAttribute(VALUE_ATTR, query))

0 commit comments

Comments
 (0)