Arduino as ISP not finding ATtiny45

I've been using this very helpful tutorial at highlowtech.org. Without repeating too much of the tutorial this is what I have done so far. I added the ATiny cores to the Arduino IDE. I uploaded the ISP sketch to my UNO, and wired up the uno to the ATtiny85 as per the instructions:

ATtiny Pin 2 to Arduino Pin 13
ATtiny Pin 1 to Arduino Pin 12
ATtiny Pin 0 to Arduino Pin 11
ATtiny Reset Pin to Arduino Pin 10

After trying to upload a blink sketch I got this error. I think the most relevant part is at the the end where it says "wrong microcontroller found".

Arduino: 1.6.0 (Windows 8), Board: "ATtiny, ATtiny45, 1 MHz (internal)"

C:\Program Files (x86)\Arduino/hardware/tools/avr/bin/avr-g++ -c -g -Os -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -mmcu=attiny45 -DF_CPU=1000000L -DARDUINO=10600 -DARDUINO_attiny -DARDUINO_ARCH_AVR -IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino -IC:\Users\Cody\Documents\Arduino\hardware\attiny\avr\variants\tiny8 C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\Blink.cpp -o C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\Blink.cpp.o 

Using previously compiled file: C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\hooks.c.o

Using previously compiled file: C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\WInterrupts.c.o

Using previously compiled file: C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\wiring.c.o

Using previously compiled file: C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\wiring_analog.c.o

Using previously compiled file: C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\wiring_digital.c.o

Using previously compiled file: C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\wiring_pulse.c.o

Using previously compiled file: C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\wiring_shift.c.o

Using previously compiled file: C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\abi.cpp.o

Using previously compiled file: C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\CDC.cpp.o

Using previously compiled file: C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\HardwareSerial.cpp.o

Using previously compiled file: C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\HardwareSerial0.cpp.o

Using previously compiled file: C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\HardwareSerial1.cpp.o

Using previously compiled file: C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\HardwareSerial2.cpp.o

Using previously compiled file: C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\HardwareSerial3.cpp.o

Using previously compiled file: C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\HID.cpp.o

Using previously compiled file: C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\IPAddress.cpp.o

Using previously compiled file: C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\main.cpp.o

Using previously compiled file: C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\new.cpp.o

Using previously compiled file: C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\Print.cpp.o

Using previously compiled file: C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\Stream.cpp.o

Using previously compiled file: C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\Tone.cpp.o

Using previously compiled file: C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\USBCore.cpp.o

Using previously compiled file: C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\WMath.cpp.o

Using previously compiled file: C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\WString.cpp.o

Using previously compiled file: C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\core.a

C:\Program Files (x86)\Arduino/hardware/tools/avr/bin/avr-gcc -w -Os -Wl,--gc-sections -mmcu=attiny45 -o C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp/Blink.cpp.elf C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp\Blink.cpp.o C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp/core.a -LC:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp -lm 

C:\Program Files (x86)\Arduino/hardware/tools/avr/bin/avr-objcopy -O ihex -j .eeprom --set-section-flags=.eeprom=alloc,load --no-change-warnings --change-section-lma .eeprom=0 C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp/Blink.cpp.elf C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp/Blink.cpp.eep 

C:\Program Files (x86)\Arduino/hardware/tools/avr/bin/avr-objcopy -O ihex -R .eeprom C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp/Blink.cpp.elf C:\Users\Cody\AppData\Local\Temp\build7426279188200462645.tmp/Blink.cpp.hex 




avrdude: Expected signature for ATtiny45 is 1E 92 06
         Double check chip, or use -F to override this check.
Wrong microcontroller found.  Did you select the right board from the Tools > Board menu?

I'm used both a ATTINY85V-10PU and an ATTINY85-20PU with the same results. I've also tried using a 1MHz and 8MHz internal clock while uploading. All of these have the same results. There are other people who have had this problem with no solutions. Anyone know what I could be doing wrong?

Wow, I am retarded. After posting this I immediately realized what I was doing wrong. I was trying to program an ATtiny85 and kept choosing ATtiny45 in the IDE. :confused: