Changeset 282
- Timestamp:
- 08/23/11 14:12:32 (10 years ago)
- Location:
- trunk/Puzzlebox/Synapse
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Puzzlebox/Synapse/Interface.py
r281 r282 1 1 # -*- coding: utf-8 -*- 2 2 3 # Copyright Puzzlebox Productions, LLC (2010 )3 # Copyright Puzzlebox Productions, LLC (2010-2011) 4 4 # 5 5 # This code is released under the GNU Pulic License (GPL) version 2 … … 10 10 11 11 __changelog__ = """\ 12 Last Update: 2011.03.01 13 12 Last Update: 2011.08.23 14 13 """ 15 14 -
trunk/Puzzlebox/Synapse/Protocol.py
r275 r282 1 1 # -*- coding: utf-8 -*- 2 2 3 # Copyright Puzzlebox Productions, LLC (2010 )3 # Copyright Puzzlebox Productions, LLC (2010-2011) 4 4 # 5 5 # This code is released under the GNU Pulic License (GPL) version 2 … … 11 11 12 12 __changelog__ = """\ 13 Last Update: 2011.0 3.1113 Last Update: 2011.08.23 14 14 15 15 """ … … 928 928 print e, 929 929 print self.device_address 930 sys.exit() 930 #sys.exit() 931 return(None) 931 932 932 933 … … 1029 1030 def close(self): 1030 1031 1031 self.device.close() 1032 if self.device != None: 1033 self.device.close() 1032 1034 1033 1035
Note: See TracChangeset
for help on using the changeset viewer.