* usr/bin/byobu-ugraph:

- clean up trailing whitespace
This commit is contained in:
Dustin Kirkland 2013-12-16 20:05:08 -06:00
commit ce9a25e7ad
2 changed files with 10 additions and 8 deletions

2
debian/changelog vendored
View file

@ -17,6 +17,8 @@ byobu (5.68) unreleased; urgency=low
- prefer python, then python2, then python3 - prefer python, then python2, then python3
* debian/control: * debian/control:
- silence lintian warning with a build-dep on python-support - silence lintian warning with a build-dep on python-support
* usr/bin/byobu-ugraph:
- clean up trailing whitespace
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 02 Dec 2013 18:46:28 -0600 -- Dustin Kirkland <kirkland@ubuntu.com> Mon, 02 Dec 2013 18:46:28 -0600

View file

@ -134,36 +134,36 @@ get_data()
while getopts "f:hm:np:rt:x:" opt while getopts "f:hm:np:rt:x:" opt
do do
case "$opt" in case "$opt" in
f) f)
file="$OPTARG" file="$OPTARG"
;; ;;
h) h)
usage usage
exit 0 exit 0
;; ;;
m) m)
min=$OPTARG min=$OPTARG
;; ;;
n) n)
newline= newline=
;; ;;
p) p)
points=$OPTARG points=$OPTARG
;; ;;
r) r)
rotate=n rotate=n
;; ;;
t) t)
theme="$OPTARG" theme="$OPTARG"
;; ;;
x) x)
max=$OPTARG max=$OPTARG
;; ;;
esac esac