Skip to content

Commit

Permalink
Fix to pass syntax tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
hjoliver committed Jul 18, 2018
1 parent 03281fb commit 293fae0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/cylc/gui/app_gcylc.py
Original file line number Diff line number Diff line change
Expand Up @@ -1216,7 +1216,8 @@ def about(self, bt):
# set_program_name() was added in PyGTK 2.12
about.set_program_name("cylc")
about.set_version(CYLC_VERSION)
about.set_copyright("Copyright (C) 2008-2018 NIWA & British Crown (Met Office) & contributors")
about.set_copyright("Copyright (C) 2008-2018 NIWA & British Crown"
" (Met Office) & contributors")
about.set_comments(
"The Cylc Suite Engine.\n\nclient UUID:\n%s" % self.cfg.my_uuid)
about.set_logo(get_logo())
Expand Down
3 changes: 2 additions & 1 deletion lib/cylc/gui/scanutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,8 @@ def launch_about_dialog(program_name, hosts):
comments_text = program_name + "\n" + hosts_text

about.set_version(CYLC_VERSION)
about.set_copyright("Copyright (C) 2008-2018 NIWA & British Crown (Met Office) & contributors")
about.set_copyright("Copyright (C) 2008-2018 NIWA & British Crown"
"(Met Office) & contributors")
about.set_comments(comments_text)
about.set_icon(get_icon())
about.run()
Expand Down

0 comments on commit 293fae0

Please sign in to comment.