Changeset 1a575f69 for skype/skyped.py
- Timestamp:
- 2009-08-31T17:06:46Z (15 years ago)
- Branches:
- master
- Children:
- 398eb78
- Parents:
- ab165c5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
skype/skyped.py
rab165c5 r1a575f69 210 210 def __init__(self): 211 211 self.cfgpath = os.path.join(os.environ['HOME'], ".skyped", "skyped.conf") 212 if not os.path.exists(self.cfgpath): 213 self.cfgpath = "/usr/local/etc/skyped/skyped.conf" 212 # for backwards compatibility 213 self.syscfgpath = "/usr/local/etc/skyped/skyped.conf" 214 if os.path.exists(self.syscfgpath): 215 self.cfgpath = self.syscfgpath 214 216 self.daemon = True 215 217 self.debug = False
Note: See TracChangeset
for help on using the changeset viewer.