py2app fixes

This commit is contained in:
Ruud
2012-01-14 00:21:10 +01:00
parent 261794a562
commit f70767be28
10 changed files with 262 additions and 75 deletions
+1 -2
View File
@@ -18,7 +18,6 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
import ntpath
import os.path
@@ -45,7 +44,7 @@ def split_path(path):
"""
result = []
while True:
head, tail = ntpath.split(path)
head, tail = os.path.split(path)
# on Unix systems, the root folder is '/'
if head == '/' and tail == '':