Skip to content

Commit

Permalink
Release - 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DeForce committed Oct 9, 2016
1 parent 96bd6ca commit c50efc1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
GUI_TAG = 'gui'

LOG_FOLDER = os.path.join(PYTHON_FOLDER, "logs")
if not os.path.exists(LOG_FOLDER):
os.makedirs(LOG_FOLDER)
LOG_FILE = os.path.join(LOG_FOLDER, 'chat_log.log')
LOG_FORMAT = logging.Formatter("%(asctime)s [%(name)s] [%(levelname)s] %(message)s")

Expand Down
2 changes: 1 addition & 1 deletion modules/chats/sc2tv.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def received_message(self, mes):
elif dict_item == 'id':
try:
self.duplicates.index(message[dict_item])
except IndexError:
except ValueError:
comp = {'source': self.source,
'source_icon': SOURCE_ICON,
'user': message['from']['name'],
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

setup(
name='LalkaChat',
version='0.0.1',
version='0.2.0',
packages=['', 'modules', 'modules.helpers', 'modules.messaging'],
requires=['requests', 'cherrypy', 'ws4py', 'irc', 'wxpython', 'cefpython', 'jinja2'],
requires=['requests', 'cherrypy', 'ws4py', 'irc', 'wxpython', 'cefpython3'],
url='https://github.com/DeForce/LalkaChat',
license='',
author='CzT/DeForce',
Expand Down

0 comments on commit c50efc1

Please sign in to comment.