Sun, 18 May 2014 19:50:05 +0200
Fixed another issue in the install script.
install.py | file | annotate | diff | comparison | revisions |
--- a/install.py Sun May 18 19:48:23 2014 +0200 +++ b/install.py Sun May 18 19:50:05 2014 +0200 @@ -368,8 +368,8 @@ name = os.path.join(dirName, name) if os.path.isdir(name): cleanupSource(name) - if len(os.listdir(name)) == 0: - os.rmdir(name) + if len(os.listdir(name)) == 0: + os.rmdir(name) def cleanUp():