Python3 fix for directory not found error.

pull/7/head
Tanaydin Sirin 2019-04-05 15:43:04 +02:00
parent be2d110578
commit b3734a43f7
1 changed files with 1 additions and 2 deletions

View File

@ -105,8 +105,7 @@ def recursive(dir, progress, plain):
recursive(dir + "/" + name, progress, plain) recursive(dir + "/" + name, progress, plain)
except OSError as e: except OSError as e:
print print("Error 404 - Not Found, maybe you need more right ?" + " " * 30)
"Error 404 - Not Found, maybe you need more right ?" + " " * 30
exit(-1) exit(-1)