aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts/oids.py
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2019-03-03 19:09:47 -0500
committerJack Lloyd <[email protected]>2019-03-03 19:09:47 -0500
commitb99dd1754909e8702d116c842a0e2d2246b76652 (patch)
tree881f6669f410c345326ff7d1a9ca66f6bdc0b10f /src/scripts/oids.py
parente44f4b5d06a3b10c5cfd380cd3917f94bdb03fef (diff)
parentb999c51e42b394bdcab38cd1c3b5d46c3adaba64 (diff)
Merge GH #1849 Prefer to_string over as_string
Diffstat (limited to 'src/scripts/oids.py')
-rwxr-xr-xsrc/scripts/oids.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/oids.py b/src/scripts/oids.py
index 5de224f79..5cc61712a 100755
--- a/src/scripts/oids.py
+++ b/src/scripts/oids.py
@@ -104,7 +104,7 @@ namespace OIDS {
std::string lookup(const OID& oid)
{
- const std::string oid_str = oid.as_string();
+ const std::string oid_str = oid.to_string();
%s
return std::string();