343 """ |
343 """ |
344 Module function to get the name of the directory storing the config data. |
344 Module function to get the name of the directory storing the config data. |
345 |
345 |
346 @return directory name of the config dir (string) |
346 @return directory name of the config dir (string) |
347 """ |
347 """ |
348 if sys.platform.startswith("win"): |
348 cdn = ".eric6" |
349 cdn = "_eric6" |
|
350 else: |
|
351 cdn = ".eric6" |
|
352 return os.path.join(os.path.expanduser("~"), cdn) |
349 return os.path.join(os.path.expanduser("~"), cdn) |
353 |
350 |
354 |
351 |
355 def main(argv): |
352 def main(argv): |
356 """ |
353 """ |