Ignore:
Timestamp:
Jan 12, 2013, 1:43:13 PM (11 years ago)
Author:
Jason Gross <jgross@mit.edu>
Children:
e3a0d71, 4485285
Parents:
4626016
git-author:
Jason Gross <jgross@mit.edu> (01/12/13 13:13:18)
git-committer:
Jason Gross <jgross@mit.edu> (01/12/13 13:43:13)
Message:
Remove trailing whitespace

This commit was made with the command sequence

    for i in $(git ls-files | tr '\n' ' ');
    do
      echo $i; sed -i s'/\s\+$//g' "$(readlink -f $i)";
    done
Location:
perl/modules/Twitter/lib/BarnOwl/Module
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • perl/modules/Twitter/lib/BarnOwl/Module/Twitter.pm

    rb8a3e00 r7869e48  
    137137        my $twitter_args = { username   => $cfg->{user},
    138138                             password   => $cfg->{password},
    139                              source     => 'barnowl', 
     139                             source     => 'barnowl',
    140140                         };
    141141        if (defined $cfg->{service}) {
     
    230230        my $handle = find_account($account);
    231231        $handle->twitter(@_);
    232     } 
     232    }
    233233    else {
    234234        # broadcast
     
    258258    summary     => 'Send a Twitter @ message',
    259259    usage       => 'twitter-atreply USER [ACCOUNT]',
    260     description => 'Send a Twitter @reply Message to USER on ACCOUNT (defaults to default_sender,' 
     260    description => 'Send a Twitter @reply Message to USER on ACCOUNT (defaults to default_sender,'
    261261    . "\nor first service if no default is provided)"
    262262    }
  • perl/modules/Twitter/lib/BarnOwl/Module/Twitter/Handle.pm

    r4ebbfbc r7869e48  
    397397                type      => 'Twitter',
    398398                sender    => $self->{cfg}->{user} || $self->{user},
    399                 recipient => $who, 
     399                recipient => $who,
    400400                direction => 'out',
    401401                body      => $msg,
Note: See TracChangeset for help on using the changeset viewer.