Skip to content

Commit

Permalink
go to version 0.1.14
Browse files Browse the repository at this point in the history
  • Loading branch information
double-fault committed Sep 23, 2017
1 parent 74e8793 commit 184bc79
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Source/CommandAlive.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#
#

from Command import *
from .Command import *

class CommandAlive(Command):
@staticmethod
Expand Down
2 changes: 1 addition & 1 deletion Source/CommandListRunningCommands.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#
#

from Command import *
from .Command import *
import tabulate
import re

Expand Down
4 changes: 2 additions & 2 deletions Source/CommandStop.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
#
#

from Command import *
import Utilities
from .Command import *
from . import Utilities

class CommandStop(Command):
@staticmethod
Expand Down
14 changes: 14 additions & 0 deletions Source/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from .Bot import Bot
from .BackgroundTask import BackgroundTask
from .BackgroundTaskManager import BackgroundTaskManager
from .ChatRoom import ChatRoom
from .Chatcommunicate import Chatcommunicate
from .Command import Command
from .CommandAlive import CommandAlive
from .CommandListRunningCommands import CommandListRunningCommands
from .CommandManager import CommandManager
#from .CommandPrivilegeUser import CommandPrivilegeUser
from .CommandStop import CommandStop
from .PrivilegeType import PrivilegeType
from .PrivilegedChatUser import PrivilegedChatUser
from . import Utilities
4 changes: 3 additions & 1 deletion __init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
from .Source/Bot import Bot
"""
The Botpy package
"""

0 comments on commit 184bc79

Please sign in to comment.