diff options
author | Rob Austein <sra@hactrn.net> | 2015-10-20 18:58:48 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2015-10-20 18:58:48 +0000 |
commit | 8fb4de3c1267c58c34a880026dd7cc75b1b6f960 (patch) | |
tree | 4c0fae1f58d19dd8f4bf3bc9621332e63df070bc /ca/tests/smoketest.py | |
parent | 517079e5dbf12b062dc12638fa9620fe9642bb70 (diff) |
Change <self/> (etc) to <tenant/> (etc). "self" always was a really
bad choice for something implemented in Python, holdover from an older
specification, but Django ORM's troubles with "self" as a keyword
argument were the last straw. Enough already. Backwards
compatability should be a straightforward data migration.
svn path=/branches/tk705/; revision=6134
Diffstat (limited to 'ca/tests/smoketest.py')
-rw-r--r-- | ca/tests/smoketest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ca/tests/smoketest.py b/ca/tests/smoketest.py index f52ce984..5f18119c 100644 --- a/ca/tests/smoketest.py +++ b/ca/tests/smoketest.py @@ -663,7 +663,7 @@ class allocation(object): cb() if target is None: - logger.info("Rekeying <self/> %s", self.name) + logger.info("Rekeying <tenant/> %s", self.name) self.call_rpkid([rpki.left_right.self_elt.make_pdu( action = "set", self_handle = self.name, rekey = "yes")], cb = done) else: @@ -680,7 +680,7 @@ class allocation(object): cb() if target is None: - logger.info("Revoking <self/> %s", self.name) + logger.info("Revoking <tenant/> %s", self.name) self.call_rpkid([rpki.left_right.self_elt.make_pdu( action = "set", self_handle = self.name, revoke = "yes")], cb = done) else: |