Skip to content

Commit

Permalink
glusterfs: Fix wrong xattr package: xattr -> pyxattr.
Browse files Browse the repository at this point in the history
Fixes error

  File "/nix/store/lxpsl84km87xpk59nai6a33ihgpfs7qr-glusterfs-3.10.2/libexec/glusterfs/glusterfind/changelog.py", line 105, in populate_pgfid_and_inodegfid
      file_xattrs = xattr.list(p)
  AttributeError: 'module' object has no attribute 'list'

when using `glusterfind pre`.
  • Loading branch information
nh2 committed Sep 8, 2017
1 parent 5bc38fc commit 8e329da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/tools/filesystems/glusterfs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ let
pkgs.flask
pkgs.prettytable
pkgs.requests
pkgs.xattr
pkgs.pyxattr
]))
# NOTE: `python2` has to be *AFTER* the above `python2.withPackages`,
# to ensure that the packages are available but the `toPythonPath`
Expand Down

0 comments on commit 8e329da

Please sign in to comment.