Skip to content

Commit e206b67

Browse files
authored
Merge pull request #9 from redmoogle/patch-1
Fixes workshop uploading(partially)
2 parents a6883a4 + f65c10f commit e206b67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pysteamcmd/steamcmd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def upload_workshopfiles(self, user, password, workshop_vdf_path=None, workshop_
169169
vdf_data = self._parse_vdf_text(vdf_data=workshop_vdf)
170170

171171
with open("{install_path}/workshop.vdf".format(install_path=self.install_path), "w") as vdf_file:
172-
vdf.dumps(vdf_data, vdf_file)
172+
vdf.dump(vdf_data, vdf_file)
173173

174174
# Upload the workshop files
175175
steamcmd_params = (

0 commit comments

Comments
 (0)