Normalize methods with 'UserName' to 'Username'

This commit is contained in:
Pierre Gordon
2019-01-01 14:20:05 -05:00
parent 812b27c268
commit 6af027c5dd
27 changed files with 184 additions and 165 deletions

View File

@@ -257,10 +257,10 @@ class CPyRetBool {
%extend CUser {
CString __str__() {
return $self->GetUserName();
return $self->GetUsername();
}
CString __repr__() {
return "<CUser " + $self->GetUserName() + ">";
return "<CUser " + $self->GetUsername() + ">";
}
std::vector<CIRCNetwork*> GetNetworks_() {
return $self->GetNetworks();