diff options
author | Rob Austein <sra@hactrn.net> | 2009-09-04 21:52:30 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2009-09-04 21:52:30 +0000 |
commit | 3bc20935ba333b88cdf3be4de04cc92a170cc1f9 (patch) | |
tree | c37707b34fe9327f30b699d2e638d6e95d9d7602 /rpkid/rpki/https.py | |
parent | 737e007f2d557b4fa48a4236214dce03be740998 (diff) |
Cleanup
svn path=/myrpki/schema.py; revision=2734
Diffstat (limited to 'rpkid/rpki/https.py')
-rw-r--r-- | rpkid/rpki/https.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/rpkid/rpki/https.py b/rpkid/rpki/https.py index 1b2d948e..305182e1 100644 --- a/rpkid/rpki/https.py +++ b/rpkid/rpki/https.py @@ -136,7 +136,6 @@ class http_message(object): class http_request(http_message): def __init__(self, cmd = None, path = None, version = default_http_version, body = None, callback = None, errback = None, **headers): - #assert cmd is None or cmd == "POST" or body is None assert cmd == "POST" or body is None http_message.__init__(self, version = version, body = body, headers = headers) self.cmd = cmd |