uninstall.py

branch
maintenance
changeset 6319
df201b9fbad4
parent 6303
ec9ebaf206fb
child 6364
6a496f0886ad
equal deleted inserted replaced
6274:44249d49d892 6319:df201b9fbad4
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 """

eric ide

mercurial