Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Francis <francis@sugarlabs.org>2012-09-25 23:26:02 (GMT)
committer Daniel Francis <francis@sugarlabs.org>2012-09-25 23:26:02 (GMT)
commitee19ee6f882557dfe127acaa3c0a08c2044c8763 (patch)
treeb546aa46e0b226537379a554bac70eadd6af32b0
parent8232a1bbd7f4e4d99c0f15a4c5ac3e1ec41e3882 (diff)
Pep8 fixes
-rwxr-xr-xsetup.py1
-rw-r--r--terminal.py17
2 files changed, 11 insertions, 7 deletions
diff --git a/setup.py b/setup.py
index 95390a3..ea39a25 100755
--- a/setup.py
+++ b/setup.py
@@ -19,4 +19,3 @@
from sugar3.activity import bundlebuilder
bundlebuilder.start()
-
diff --git a/terminal.py b/terminal.py
index 4c26984..63c0d61 100644
--- a/terminal.py
+++ b/terminal.py
@@ -190,11 +190,13 @@ class TerminalActivity(activity.Activity):
helpitem.add_section(_('cd'))
helpitem.add_paragraph(_('Change directory'))
helpitem.add_paragraph(_('To use it, write: cd directory'))
- helpitem.add_paragraph(_('If you call it without parameters, will change\nto the user directory'))
+ helpitem.add_paragraph(_(
+ 'If you call it without parameters, will change\nto the user directory'))
helpitem.add_section(_('ls'))
helpitem.add_paragraph(_('List the content of a directory.'))
helpitem.add_paragraph(_('To use it, write: ls directory'))
- helpitem.add_paragraph(_('If you call it without parameters, will list the\nworking directory'))
+ helpitem.add_paragraph(
+ _('If you call it without parameters, will list the\nworking directory'))
helpitem.add_section(_('cp'))
helpitem.add_paragraph(_('Copy a file to a specific location'))
helpitem.add_paragraph(_('Call it with the file and the new location'))
@@ -204,8 +206,10 @@ class TerminalActivity(activity.Activity):
helpitem.add_paragraph(_('Use: rm file'))
helpitem.add_section(_('su'))
helpitem.add_paragraph(_('Login as superuser (root)'))
- helpitem.add_paragraph(_('The root user is the administrator of the\nsystem'))
- helpitem.add_paragraph(_('You must be careful, because you can modify\nsystem files'))
+ helpitem.add_paragraph(
+ _('The root user is the administrator of the\nsystem'))
+ helpitem.add_paragraph(
+ _('You must be careful, because you can modify\nsystem files'))
return helpitem
@@ -420,8 +424,9 @@ class TerminalActivity(activity.Activity):
def write_file(self, file_path):
return
-# FIXME Bellow lines are commented in order to have journal access, but we are facing
-# an upstream bug with Vte.Terminal.get_text, info on SL#3645, upstream gnome Bug #676999
+# FIXME Bellow lines are commented in order to have journal access,
+# but we are facing an upstream bug with Vte.Terminal.get_text,
+# info on SL#3645, upstream gnome Bug #676999
#
# if not self.metadata['mime_type']:
# self.metadata['mime_type'] = 'text/plain'