mirror of
https://github.com/arsenetar/send2trash.git
synced 2026-03-15 20:11:38 +00:00
Merge bc53144139 into 0974912e78
This commit is contained in:
@@ -133,7 +133,7 @@ def get_dev(path):
|
|||||||
|
|
||||||
def send2trash(path):
|
def send2trash(path):
|
||||||
if not isinstance(path, str):
|
if not isinstance(path, str):
|
||||||
path = str(path, sys.getfilesystemencoding())
|
path = str(path).encode(sys.getfilesystemencoding())
|
||||||
if not op.exists(path):
|
if not op.exists(path):
|
||||||
raise OSError("File not found: %s" % path)
|
raise OSError("File not found: %s" % path)
|
||||||
# ...should check whether the user has the necessary permissions to delete
|
# ...should check whether the user has the necessary permissions to delete
|
||||||
|
|||||||
Reference in New Issue
Block a user