Changeset 2ff0f37
- Timestamp:
- 2011-06-29T23:25:02Z (13 years ago)
- Branches:
- master
- Children:
- 66911fc
- Parents:
- bf8ee39
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/skype/skyped.py
rbf8ee39 r2ff0f37 336 336 def __init__(self): 337 337 self.cfgpath = os.path.join(os.environ['HOME'], ".skyped", "skyped.conf") 338 # f or backwards compatibility338 # fall back to system-wide settings 339 339 self.syscfgpath = "/usr/local/etc/skyped/skyped.conf" 340 if os.path.exists(self.syscfgpath) :340 if os.path.exists(self.syscfgpath) and not os.path.exists(self.cfgpath): 341 341 self.cfgpath = self.syscfgpath 342 342 self.daemon = True
Note: See TracChangeset
for help on using the changeset viewer.