Skip to content

Commit

Permalink
Fix typo (closes #1)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sébastien Gross authored and Sébastien Gross committed Jan 2, 2015
1 parent 6cdd245 commit 65f4c65
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions git-meta
Expand Up @@ -8,7 +8,7 @@

# Copyright © 2014 Sébastien Gross <seb•ɑƬ•chezwam•ɖɵʈ•org>
# Created: 2014-02-26
# Last changed: 2014-07-22 12:11:10
# Last changed: 2015-01-02 14:14:03

# This program is free software. It comes without any warranty, to
# the extent permitted by applicable law. You can redistribute it
Expand Down Expand Up @@ -53,8 +53,8 @@ def get_file_stats(f, args):
ret['uid'] = st.st_uid
ret['gid'] = st.st_gid
elif args['owner'] is True:
ret['uid'] = pwd.getpwuid(st.st_uid).pw_name,
ret['gid'] = grp.getgrgid(st.st_gid).gr_name
ret['uid'] = pwd.getpwuid(st.st_uid).pw_name
ret['gid'] = grp.getgrgid(st.st_gid).gr_name
return ret


Expand Down

0 comments on commit 65f4c65

Please sign in to comment.