Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
juleslagarde committed Aug 26, 2023
1 parent 89d15f1 commit 9ea3c86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gogdl/saves.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class SyncAction(Enum):

class SyncFile:
def __init__(self, path, abs_path, md5=None, update_time=None):
self.relative_path = path
self.relative_path = path.replace(os.sep, '/') # cloud file identifier
self.absolute_path = abs_path
self.md5 = md5
self.update_time = update_time
Expand Down

0 comments on commit 9ea3c86

Please sign in to comment.