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
On Windows, using Python 2.7.10 64-bit and git-fat 0.5.0 installed from pypi. I get an exception when I attempt a "git-fat push"
$ git-fat push
Traceback (most recent call last):
File "c:/Python27/Scripts/git-fat", line 1121, in <module>
main()
File "c:/Python27/Scripts/git-fat", line 1110, in main
run(backend, **kwargs)
File "c:/Python27/Scripts/git-fat", line 991, in run
getattr(gitfat, fn)(**kwargs)
File "c:/Python27/Scripts/git-fat", line 905, in push
files = self._referenced_objects(**kwargs) & self._cached_objects()
File "c:/Python27/Scripts/git-fat", line 535, in _referenced_objects
objs_dict = self._managed_files(**kwargs)
File "c:/Python27/Scripts/git-fat", line 593, in _managed_files
for objhash, objtype, size in revlistgen:
File "c:/Python27/Scripts/git-fat", line 557, in _rev_list
awk = sub.Popen([awk_tool, '{print $1}'], stdin=revlist.stdout, stdout=sub.PIPE)
File "c:\Python27\lib\subprocess.py", line 710, in __init__
errread, errwrite)
File "c:\Python27\lib\subprocess.py", line 958, in _execute_child
startupinfo)
WindowsError: [Error 2] The system cannot find the file specified
I then ran it with PDB, and it pointed here right after the uncaught exception, in subprocess.py line 977:
972 if p2cread is not None:
973 _close_in_parent(p2cread)
974 if c2pwrite is not None:
975 _close_in_parent(c2pwrite)
976 if errwrite is not None:
977 -> _close_in_parent(errwrite)
978
979 # Retain the process handle, but close the thread handle
980 self._child_created = True
981 self._handle = hp
982 self.pid = pid
(Pdb) p errwrite
<_subprocess_handle object at 0x00000000022C52A0>
(Pdb)
The text was updated successfully, but these errors were encountered:
On Windows, using Python 2.7.10 64-bit and git-fat 0.5.0 installed from pypi. I get an exception when I attempt a "git-fat push"
I then ran it with PDB, and it pointed here right after the uncaught exception, in subprocess.py line 977:
The text was updated successfully, but these errors were encountered: