Merge pull request #38 from doughyde/master
Fix calling the wrong function
This commit is contained in:
commit
c1f2c924bb
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ class CalendarService(object):
|
||||||
Retrieves the system's timezone from a list of possible options.
|
Retrieves the system's timezone from a list of possible options.
|
||||||
Just take the first one
|
Just take the first one
|
||||||
"""
|
"""
|
||||||
return self.get_possible_timezones()[0]
|
return self.get_all_possible_timezones_of_local_machine()[0]
|
||||||
|
|
||||||
def get_event_detail(self, pguid, guid):
|
def get_event_detail(self, pguid, guid):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in a new issue