Fixes for desktop imports

This commit is contained in:
Ruud
2012-05-02 21:35:37 +02:00
parent f7e4c8c987
commit 1345e984c4
3 changed files with 4 additions and 4 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
import zipfile
@@ -46,7 +45,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 == '':