Skip to content

Commit

Permalink
Fix VariableView.__repr__
Browse files Browse the repository at this point in the history
  • Loading branch information
mstimberg committed Aug 18, 2013
1 parent c4c5ad6 commit 5034ab4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brian2/core/variables.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ def __repr__(self):
varname = self.name
if self.unit is None:
varname += '_'
return '<%s.%s_: %r>' % (self.group.name, varname,
return '<%s.%s: %r>' % (self.group.name, varname,
self[:])


Expand Down

0 comments on commit 5034ab4

Please sign in to comment.