You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print_files('Changes not staged for commit', g.modified_unstaged_files)
File "/usr/local/lib/python2.7/dist-packages/funky/funky.py", line 199, in f
func(*args, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/gittle/gittle.py", line 655, in modified_unstaged_files
if os.stat(self.abspath(f)).st_mtime > timestamp
OSError: [Errno 2] No such file or directory: '
if you delete a files at git . and run g.modified_unstaged_files ,that issue will occur:
File "/usr/local/lib/python2.7/dist-packages/funky/funky.py", line 199, in f
func(*args, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/gittle/gittle.py", line 655, in modified_unstaged_files
if os.stat(self.abspath(f)).st_mtime > timestamp
OSError: [Errno 2] No such file or directory: '
if you delete a files at git . and run g.modified_unstaged_files ,that issue will occur:
source code:
os.stat(self.abspath(f)).st_mtime > timestamp will catch exception becasue some file has already delete at that time.
The text was updated successfully, but these errors were encountered: