Skip to content

Commit

Permalink
Fix panoptes#230 - Dome.status is a property, not a function. Was bei…
Browse files Browse the repository at this point in the history
…ng called,

causing an exception because a str can't be called.
  • Loading branch information
jamessynge committed Dec 23, 2017
1 parent 61d5198 commit 4a9d321
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pocs/observatory.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def status(self):
t, self.mount.get_target_coordinates())

if self.dome:
status['dome'] = self.dome.status()
status['dome'] = self.dome.status

if self.current_observation:
status['observation'] = self.current_observation.status()
Expand Down

0 comments on commit 4a9d321

Please sign in to comment.