Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
platini2 authored Dec 30, 2020
1 parent b6a0535 commit a4900e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion celestron.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def printactivedevices():
if mount in mounts:
mounttext = mounts[mount]
else:
mounttext = 'UNKNOWN' + " (" + str(hex(mount)) + ")"
mounttext = 'UNKNOWN' + " (" + str(hex(mount))+ ")" if len(mount)>0 else 'NOT DETECTED'
print ("-----------------------")
print (" Mount :", mounttext )
print ("-----------------------")
Expand Down

0 comments on commit a4900e9

Please sign in to comment.