Skip to content

Commit

Permalink
fixed sys.path.insert
Browse files Browse the repository at this point in the history
  • Loading branch information
Seth Vidal committed Dec 20, 2002
1 parent 558f281 commit a75bef8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/yum
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

import sys

sys.path.insert('/usr/lib/yum')
sys.path.insert(1,'/usr/lib/yum')
import yummain
try:
yummain.main(sys.argv[1:])
Expand Down
2 changes: 1 addition & 1 deletion bin/yum-arch
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

import sys

sys.path.insert('/usr/lib/yum')
sys.path.insert(1,'/usr/lib/yum')
import pullheaders
pullheaders.main()

0 comments on commit a75bef8

Please sign in to comment.