]> git.donarmstrong.com Git - infobot.git/commitdiff
* fix ||= typo
authordondelelcaro <dondelelcaro@c11ca15a-4712-0410-83d8-924469b57eb5>
Mon, 15 Sep 2008 18:45:14 +0000 (18:45 +0000)
committerdondelelcaro <dondelelcaro@c11ca15a-4712-0410-83d8-924469b57eb5>
Mon, 15 Sep 2008 18:45:14 +0000 (18:45 +0000)
git-svn-id: https://svn.code.sf.net/p/infobot/code/branches/don/dpkg@1843 c11ca15a-4712-0410-83d8-924469b57eb5

src/Modules/DebianExtra.pl

index f70dd2eae3ad50ac40144bdbdad88378e9e25c2e..ef77477c65f267d1dd9d6d11a31f24f0be5596ee 100644 (file)
@@ -78,7 +78,7 @@ use SOAP::Lite;
 sub do_id($) {
     my ($bug_num,$options) = @_;
 
-    $options || = {};
+    $options ||= {};
 
     if ( not $bug_num =~ /^\#?\d+$/ ) {
         warn "Bug is not a number!" and return undef