Skip to content
This repository has been archived by the owner on Feb 13, 2020. It is now read-only.

Commit

Permalink
Fix for unittests.
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrusdaboo committed Oct 27, 2006
1 parent 0111163 commit bd76867
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion twistedcaldav/method/put_common.py
Expand Up @@ -305,7 +305,7 @@ def noUIDConflict(uid):
try: try:
calendar = Component.fromString(calendardata) calendar = Component.fromString(calendardata)
except ValueError, e: except ValueError, e:
log.err(e) log.err(str(e))
raise HTTPError(ErrorResponse(responsecode.FORBIDDEN, (caldav_namespace, "valid-calendar-data"))) raise HTTPError(ErrorResponse(responsecode.FORBIDDEN, (caldav_namespace, "valid-calendar-data")))


# Valid calendar data check # Valid calendar data check
Expand Down

0 comments on commit bd76867

Please sign in to comment.