comparison roundup/configuration.py @ 5102:96dc9f07340a

issue2161722: oudated docs Fix old entry in FAQ, update roundup-server config docs and example file from current roundup-server output. Update some typos in .py files.
author John Rouillard <rouilj@ieee.org>
date Sun, 26 Jun 2016 20:53:11 -0400
parents 99e289359798
children 14abd0a67207
comparison
equal deleted inserted replaced
5101:d043a09952db 5102:96dc9f07340a
329 Paths may be either absolute or relative to the HOME. 329 Paths may be either absolute or relative to the HOME.
330 330
331 """ 331 """
332 332
333 class_description = "The path may be either absolute or relative\n" \ 333 class_description = "The path may be either absolute or relative\n" \
334 "to the directory containig this config file." 334 "to the directory containing this config file."
335 335
336 def get(self): 336 def get(self):
337 _val = Option.get(self) 337 _val = Option.get(self)
338 if _val and not os.path.isabs(_val): 338 if _val and not os.path.isabs(_val):
339 _val = os.path.join(self.config["HOME"], _val) 339 _val = os.path.join(self.config["HOME"], _val)

Roundup Issue Tracker: http://roundup-tracker.org/