We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e56df6e commit 81d0f99Copy full SHA for 81d0f99
rdflib/graph.py
@@ -993,9 +993,9 @@ def serialize(
993
serializer.serialize(stream, base=base, encoding=encoding, **args)
994
stream.close()
995
if hasattr(shutil, "move"):
996
- shutil.move(name, path)
+ shutil.move(name, location)
997
else:
998
- shutil.copy(name, path)
+ shutil.copy(name, location)
999
os.remove(name)
1000
1001
def parse(
0 commit comments