Skip to content

Commit

Permalink
Revise file stamp in state.py
Browse files Browse the repository at this point in the history
Removed information that was causing spurious
"you modified it" warnings.
  • Loading branch information
bocchino committed Nov 23, 2016
1 parent 33dadbf commit 5c2c7fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion state.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def read_stamp(self):
return STAMP_DIR
else:
# a "unique identifier" stamp for a regular file
return str((st.st_ctime, st.st_mtime, st.st_size, st.st_ino))
return str((st.st_mtime, st.st_size, st.st_ino))

def nicename(self):
return relpath(os.path.join(vars.BASE, self.name), vars.STARTDIR)
Expand Down

0 comments on commit 5c2c7fb

Please sign in to comment.