Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
henry232323 committed Jun 29, 2018
1 parent 82f3e5f commit da38ca1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions quirks.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ def __init__(self, app):
with open("cfg/quirks.json", 'r') as qf:
self.allquirks = json.loads(qf.read())

if self.id not in self.allquirks.keys():
self.allquirks[self.id] = list()
self.quirks = self.allquirks[self.id]
if str(self.id) not in self.allquirks.keys():
self.allquirks[str(self.id)] = list()
self.quirks = self.allquirks[str(self.id)]
self.qfuncs = dict(inspect.getmembers(pyquirks.quirk_funcs, inspect.isfunction))

def process_quirks(self, message):
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Quamash >= 0.5.5
-e git+https://github.com/henry232323/quamash
PyQt5 >= 5.7
-e git+https://github.com/Rapptz/discord.py@rewrite#egg=discord.py
aiohttp >= 1.0.5
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

setup(
name="Pesterchum-Discord",
version="1.3.5",
version="1.3.6",
description="A Discord client mimicking the Pesterchum chat client from Homestuck, Uses a lot of code from my Pesterchum Client.",
options={"build_exe": build_exe_options},
executables=[
Expand Down

0 comments on commit da38ca1

Please sign in to comment.