Skip to content

Commit

Permalink
Update readme, fix typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
vasily-v-ryabov committed Sep 28, 2015
1 parent 3cffdea commit d2ad03a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ Recommended usage: 64-bit Python is for 64-bit applications; 32-bit Python is fo
* Download [latest pywinauto release](https://github.com/pywinauto/pywinauto/releases/download/0.5.3/pywinauto-0.5.3.zip)
* Just unpack and run `python setup.py install`

or

* run `pip install pywinauto` (pypiwin32 will be installed automatically)

### Optional packages
* Install [Pillow](https://pypi.python.org/pypi/Pillow) (PIL fork) to be able to call `CaptureAsImage()` method.

### Documentation
* [Introduction](http://pywinauto.github.io/docs/)
* [Table of contents](http://pywinauto.github.io/docs/contents.html)
Expand Down Expand Up @@ -46,5 +53,7 @@ Recommended usage: 64-bit Python is for 64-bit applications; 32-bit Python is fo
* GitHub: [![GitHub downloads](https://img.shields.io/github/downloads/pywinauto/pywinauto/0.5.3/pywinauto-0.5.3.zip.svg)](https://github.com/pywinauto/pywinauto/releases/download/0.5.3/pywinauto-0.5.3.zip)

#### Packages required for running unit tests
* [Pillow](https://pypi.python.org/pypi/Pillow/2.7.0) or PIL
* [Pillow](https://pypi.python.org/pypi/Pillow) or PIL
* [coverage](https://pypi.python.org/pypi/coverage)

(Python 3.5 may require VC++ 2015 re-distributable package)
4 changes: 2 additions & 2 deletions pywinauto/controls/HwndWrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -446,12 +446,12 @@ def ProcessID(self):

#-----------------------------------------------------------
def HasStyle(self, style):
"Return True if the control has the specified sytle"
"Return True if the control has the specified style"
return handleprops.has_style(self, style)

#-----------------------------------------------------------
def HasExStyle(self, exstyle):
"Return True if the control has the specified extended sytle"
"Return True if the control has the specified extended style"
return handleprops.has_exstyle(self, exstyle)

#-----------------------------------------------------------
Expand Down

0 comments on commit d2ad03a

Please sign in to comment.