Skip to content

Commit 87d1302

Browse files
author
Ram Rachum
committed
-
1 parent 6434533 commit 87d1302

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

garlicsim/garlicsim/general_misc/identities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def has_same_identity_as(self, other):
4545

4646

4747
personality = proxy_property.ProxyProperty(
48-
'__identity.personality',
48+
'_HasIdentity__identity.personality',
4949
doc='''Personality containing a human name and two colors.'''
5050
)
5151

garlicsim/garlicsim/general_misc/import_tools.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,10 @@ def import_if_exists(module_name, silent_fail=False):
106106
else: # silent_fail is False
107107
raise ImportError("Can't find %s." % module_name)
108108

109-
# blocktododoc Not actually using the result of `imp.find_module`, just want to know
110-
# that it worked and the module exists. We'll let `normal_import` find the
111-
# module again, assuming its finding procedure will work exactly the same
112-
# as `imp`'s.
109+
# blocktododoc Not actually using the result of `imp.find_module`, just
110+
# want to know that it worked and the module exists. We'll let
111+
# `normal_import` find the module again, assuming its finding procedure
112+
# will work exactly the same as `imp`'s.
113113

114114
return normal_import(module_name)
115115

0 commit comments

Comments
 (0)