1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-14 00:07:14 +03:00

Doc correction.

This commit is contained in:
Jonathan Harris 2016-01-09 16:51:05 +00:00
parent 7b38c9e637
commit a5665552aa

View File

@ -40,8 +40,8 @@ def plugin_prefs(parent):
Return a TK Frame for adding to the EDMC settings dialog.
"""
frame = nb.Frame(parent)
nb.Label(prefs, text="Hello").grid()
nb.Label(prefs, text="Commander").grid()
nb.Label(frame, text="Hello").grid()
nb.Label(frame, text="Commander").grid()
return frame
```