Skip to content
This repository has been archived by the owner on Jun 7, 2018. It is now read-only.

Commit

Permalink
Typos fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
rc0r committed Jan 3, 2015
1 parent 26a27b2 commit 3f72503
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 7 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
before_install:
Expand Down
2 changes: 1 addition & 1 deletion AvivoreXT/Avivore.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,4 +173,4 @@ def __db_write_value(self, stime, stype, user, userid, value, tweetid, message):
cur.execute(qstring,
(unicode(stime), unicode(stype), unicode(user), unicode(userid),
unicode(value), unicode(tweetid), unicode(message)))
# lid = cur.lastrowid
# lid = cur.lastrowid
2 changes: 1 addition & 1 deletion AvivoreXT/AvivoreConfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,4 +136,4 @@ def init_database(self, status):
dbcon = lite.connect(self.database_path)
dbcur = dbcon.cursor()
dbcur.execute(
"CREATE TABLE Data (TimeRecv int, Type int, User text, UserId text, Value text, TID int, Message text)")
"CREATE TABLE Data (TimeRecv int, Type int, User text, UserId text, Value text, TID int, Message text)")
1 change: 0 additions & 1 deletion AvivoreXT/AvivoreMain.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,3 @@ def start():

if __name__ == "__main__":
start()

2 changes: 0 additions & 2 deletions AvivoreXT/Helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,3 @@ def output(string):
if isinstance(string, str):
# This is sort of lame but whatever:
print("[" + str(round(time.time(), 0))[:-2] + "] " + string)


2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
scripts=scripts,
packages=find_packages(),
test_suite='tests',
)
)

0 comments on commit 3f72503

Please sign in to comment.