summaryrefslogtreecommitdiff
path: root/scripts/database_updater.py
diff options
context:
space:
mode:
authorTrupti Rajesh Kini2016-10-25 15:22:44 +0530
committerGitHub2016-10-25 15:22:44 +0530
commitefe99ed44bdd8a2568862967577d7ccea41024d5 (patch)
tree4c26ad501f9387e3d16c389603ae1432bd2c64fd /scripts/database_updater.py
parent6da84d8c334e16ebea6597d8b83d51552935ed00 (diff)
parent27d47a26dd9c7765bbfda112eddbebe8f3679460 (diff)
downloadPython-TBC-Interface-efe99ed44bdd8a2568862967577d7ccea41024d5.tar.gz
Python-TBC-Interface-efe99ed44bdd8a2568862967577d7ccea41024d5.tar.bz2
Python-TBC-Interface-efe99ed44bdd8a2568862967577d7ccea41024d5.zip
Merge pull request #41 from kinitrupti/master
Upgraded to python3
Diffstat (limited to 'scripts/database_updater.py')
-rw-r--r--scripts/database_updater.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/database_updater.py b/scripts/database_updater.py
index 71813ea..6bbb1f6 100644
--- a/scripts/database_updater.py
+++ b/scripts/database_updater.py
@@ -74,5 +74,5 @@ if __name__ == '__main__':
b = a.fetch_comments_from_script()
c = a.add_comments_to_db() #This should always be before delete_redundant_comments
d = a.delete_redundant_comments() #This should always be after add_comments_to_db
- print c
- print d
+ print (c)
+ print (d)