diff FeedSettings.py @ 245:8e73a8ae863f

Fix the docstrings
author Dirk Olmes <dirk@xanthippe.ping.de>
date Tue, 09 Jun 2015 02:30:55 +0200
parents 699d8f1cebd4
children 3ce39af93e77
line wrap: on
line diff
--- a/FeedSettings.py	Tue Jun 09 02:19:00 2015 +0200
+++ b/FeedSettings.py	Tue Jun 09 02:30:55 2015 +0200
@@ -2,11 +2,11 @@
 from PyQt4.QtGui import QDialog
 from Ui_FeedSettings import Ui_FeedSettings
 
+"""
+Copy all feed properties into the GUI on initialization. Collect all changes
+in a separate dict that's passed into the backend along with the feed to modify.
+"""
 class FeedSettings(QDialog):
-    """
-    Copy all feed properties into the GUI on initialization. Collect all changes
-    in a separate dict that's passed into the backend along with the feed to modify.
-    """
     def __init__(self, backend):
         super(FeedSettings, self).__init__(None)
         self.backend = backend