Merge pull request #7 from Sp1tF1r3/master

Added action Reload
develop
Randall Degges 2014-09-17 19:36:39 -07:00
commit 6bd0cc9bd6
1 changed files with 9 additions and 1 deletions

View File

@ -613,7 +613,7 @@ class Manager(object):
def playdtmf(self, channel, digit):
"""Plays a dtmf digit on the specified channel"""
cdict = {'Action': 'PlayDTMF'}
cdict['Channel'] = channel
cdict['Digit'] = digit
@ -647,6 +647,14 @@ class Manager(object):
response = self.send_action(cdict)
return response
def reload(self, module):
""" Reloads config for a given module """
cdict = {'Action': 'Reload'}
cdict['Module'] = module
response = self.send_action(cdict)
return response
class ManagerException(Exception):
pass