gasinvein / steam-desktop-updater

Steam apps desktop launchers generator
26 stars 5 forks source link

ValueError: Unknown VDF_VERSION: 0x07564427 #2

Closed HughPH closed 6 years ago

HughPH commented 6 years ago

Is there any other information I can provide?

Traceback (most recent call last): File "./steam_desktop_updater.py", line 134, in create_desktop_data(steam_root=args.steam_root, destdir=args.datatir, steam_cmd=args.steam_command) File "./steam_desktop_updater.py", line 86, in create_desktop_data appinfo_data = appinfo.load(af) File "/home/lelani/.local/lib/python3.6/site-packages/steamfiles/appinfo.py", line 29, in load return loads(fp.read(), wrapper=wrapper) File "/home/lelani/.local/lib/python3.6/site-packages/steamfiles/appinfo.py", line 42, in loads return AppinfoDecoder(data, wrapper=wrapper).decode() File "/home/lelani/.local/lib/python3.6/site-packages/steamfiles/appinfo.py", line 102, in decode raise ValueError('Unknown VDF_VERSION: 0x{0:08x}'.format(header['version'])) ValueError: Unknown VDF_VERSION: 0x07564427

gasinvein commented 6 years ago

I guess it's a steamfiles issue leovp/steamfiles#5, fixed in master.

HughPH commented 6 years ago

Thanks, did you push? :)

gasinvein commented 6 years ago

I meant steamfiles's master branch. It's latest release (0.1.3 or so) doesn't support VDF version 0x07564427. You can install steamfiles from git master like so: pip3 install --upgrade --user git+https://github.com/leovp/steamfiles.git

HughPH commented 6 years ago

OH! Ok! Thanks again.