mirror of
https://github.com/Kozea/Radicale.git
synced 2025-06-26 16:45:52 +00:00
Remove useless parenthesis.
This commit is contained in:
parent
07f3c13b62
commit
97dd530bb6
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ class CalendarHTTPHandler(server.BaseHTTPRequestHandler):
|
||||||
@check_rights
|
@check_rights
|
||||||
def do_GET(self):
|
def do_GET(self):
|
||||||
"""Manage GET request."""
|
"""Manage GET request."""
|
||||||
item_name = (xmlutils.name_from_path(self.path))
|
item_name = xmlutils.name_from_path(self.path)
|
||||||
if item_name:
|
if item_name:
|
||||||
# Get calendar item
|
# Get calendar item
|
||||||
items = self._calendar.timezones
|
items = self._calendar.timezones
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue